summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorStefan Kreutz <mail@skreutz.com>2025-08-23 23:44:58 +0200
committerStefan Kreutz <mail@skreutz.com>2025-08-23 23:44:58 +0200
commit7e30686bc92bc4ce1650b1031afb7a6a6ebb91ec (patch)
tree371bda66f5655821fe09ae604887ac3030f08799 /flake.nix
parente15336958e495b4638dc48f470b87f3d7fc00080 (diff)
downloadbrck-7e30686bc92bc4ce1650b1031afb7a6a6ebb91ec.tar
Review Nix flake
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index ef61e09..ac1946a 100644
--- a/flake.nix
+++ b/flake.nix
@@ -25,13 +25,13 @@
# nix run .#brck -- --help
packages.brck = naersk'.buildPackage {
name = "brck";
- src = ./.;
+ src = builtins.path { path = ./.; name = "brck"; };
meta.mainProgram = "brck";
};
# nix develop
devShell = pkgs.mkShell {
- nativeBuildInputs = with pkgs; [ rustc cargo ];
+ nativeBuildInputs = with pkgs; [ rustc cargo cargo-edit ];
};
}
);
Generated by cgit. See skreutz.com for my tech blog and contact information.