diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-17 20:35:10 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-17 20:35:10 +0900 |
| commit | 40161c5938a016e6f03ad9b7436eb3bf455626a3 (patch) | |
| tree | d1e74e12311d6589e22ba9f33b5d03e3e218ecf7 /flake.nix | |
| parent | 679e719f9e4d9230482491bf253a0d538f030f08 (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.nix | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 ]; }; }); |
