aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-10-17 20:35:10 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-10-17 20:35:10 +0900
commit40161c5938a016e6f03ad9b7436eb3bf455626a3 (patch)
treed1e74e12311d6589e22ba9f33b5d03e3e218ecf7 /flake.nix
parent679e719f9e4d9230482491bf253a0d538f030f08 (diff)
nix: remove fortify package from default devShell
This change makes it possible to start a devShell when tests aren't passing. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 3a2f6698..f8f3e384 100644
--- a/flake.nix
+++ b/flake.nix
@@ -36,6 +36,12 @@
default = nixpkgsFor.${system}.mkShell {
buildInputs =
with nixpkgsFor.${system};
+ self.packages.${system}.fortify.buildInputs;
+ };
+
+ withPackage = nixpkgsFor.${system}.mkShell {
+ buildInputs =
+ with nixpkgsFor.${system};
self.packages.${system}.fortify.buildInputs ++ [ self.packages.${system}.fortify ];
};
});