advent-of-code-2022/flake.nix

25 lines
488 B
Nix
Raw Permalink Normal View History

2022-12-01 09:45:13 +01:00
{
inputs = {
nixCargoIntegration.url = "github:yusdacra/nix-cargo-integration";
};
outputs = inputs:
inputs.nixCargoIntegration.lib.makeOutputs {
root = ./.;
config = common: {
shell = {
packages = with common.pkgs; [
rust-analyzer
lldb
treefmt
cargo-watch
cargo-flamegraph
2022-12-09 21:41:35 +01:00
cargo-asm
2022-12-01 09:45:13 +01:00
pkg-config
hyperfine
];
};
};
};
}