From 17cc02ff991e26737a91fb2ad201a79ed56459bd Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Thu, 23 May 2024 16:31:06 -0700 Subject: [PATCH] add a 'no-features' devshell for local testing --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 4dafcd95..98783c44 100644 --- a/flake.nix +++ b/flake.nix @@ -192,5 +192,9 @@ (scopeHostStatic.overrideScope (final: prev: { main = prev.main.override { all_features = true; }; })); + devShells.no-features = mkDevShell + (scopeHostStatic.overrideScope (final: prev: { + main = prev.main.override { default_features = false; }; + })); }); }