aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index aa10f3db..fb88f99b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,7 +34,13 @@
devShells = forAllSystems (system: {
default = nixpkgsFor.${system}.mkShell {
- buildInputs = with nixpkgsFor.${system}; [ self.packages.${system}.fortify ];
+ buildInputs =
+ with nixpkgsFor.${system};
+ [ self.packages.${system}.fortify ] ++ self.packages.${system}.fortify.buildInputs;
+
+ shellHook = ''
+ which fortify
+ '';
};
});
};