mirror of
https://github.com/nix-community/flakelight.git
synced 2025-03-12 13:08:10 +01:00
Add test for overridden devShell without other options
This commit is contained in:
parent
17463db5c0
commit
81371a8bf4
@ -300,7 +300,14 @@ in
|
|||||||
(flakelight ./empty {
|
(flakelight ./empty {
|
||||||
devShell = { mkShell }: mkShell { };
|
devShell = { mkShell }: mkShell { };
|
||||||
})
|
})
|
||||||
(f: f ? devShells.x86_64-linux.default);
|
(f: lib.isDerivation f.devShells.x86_64-linux.default);
|
||||||
|
|
||||||
|
devShell-override-empty = test
|
||||||
|
(flakelight ./empty {
|
||||||
|
disabledModules = [ "builtinFormatters.nix" ];
|
||||||
|
devShell = { mkShell }: mkShell { };
|
||||||
|
})
|
||||||
|
(f: lib.isDerivation f.devShells.x86_64-linux.default);
|
||||||
|
|
||||||
devShells = test
|
devShells = test
|
||||||
(flakelight ./empty {
|
(flakelight ./empty {
|
||||||
|
Loading…
Reference in New Issue
Block a user