diff options
author | Stefan Kreutz <mail@skreutz.com> | 2025-08-24 22:16:25 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2025-08-24 22:16:25 +0200 |
commit | 24a9858c12e7fb4791b92396b59f3dce5efc9ebd (patch) | |
tree | a1cebcf60e0f15dc7e9dc7a149f7e6d4d6b1524c | |
parent | 6dab266650e020c7ed5682df23eb180e46cfb665 (diff) | |
download | brck-24a9858c12e7fb4791b92396b59f3dce5efc9ebd.tar |
Refactor flake outputs
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ in rec { # nix build # nix run . -- --help - defaultPackage = packages.brck; + packages.default = packages.brck; # nix build .#brck # nix run .#brck -- --help @@ -30,7 +30,7 @@ }; # nix develop - devShell = pkgs.mkShell { + devShells.default = pkgs.mkShell { nativeBuildInputs = with pkgs; [ rustc cargo rustfmt clippy cargo-audit cargo-edit ]; }; } |