add a 'no-features' devshell for local testing

This commit is contained in:
Benjamin Lee 2024-05-23 16:31:06 -07:00 committed by June 🍓🦴
parent c0f8253fc5
commit 17cc02ff99

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