add a 'no-features' devshell for local testing

This commit is contained in:
Benjamin Lee 2024-05-23 16:31:06 -07:00
parent 1e7be3465b
commit cf91db4757
No known key found for this signature in database
GPG key ID: FB9624E2885D55A4

View file

@ -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; };
}));
});
}