nix: include package buildInputs in devShells
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
@@ -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
|
||||
'';
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user