summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.