diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 + ''; }; }); }; |
