From 40161c5938a016e6f03ad9b7436eb3bf455626a3 Mon Sep 17 00:00:00 2001 From: Ophestra Umiker Date: Thu, 17 Oct 2024 20:35:10 +0900 Subject: [PATCH] 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 --- flake.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/flake.nix b/flake.nix index 3a2f669..f8f3e38 100644 --- a/flake.nix +++ b/flake.nix @@ -34,6 +34,12 @@ devShells = forAllSystems (system: { 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 ];