flake: unwrap devShells.*.tests
This reverts commit 6f9781b1b0
to fix
errors of `nix flake check` and `nix flake show`.
The `devShells` attribute is expected to be an attrset of derivations,
not nested attrsets.
This commit is contained in:
parent
d82c9af817
commit
43ba4489bd
|
@ -90,7 +90,7 @@
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
tests = import ./tests { inherit pkgs; };
|
tests = import ./tests { inherit pkgs; };
|
||||||
in { tests = tests.run; });
|
in tests.run);
|
||||||
|
|
||||||
packages = forAllSystems (system:
|
packages = forAllSystems (system:
|
||||||
let
|
let
|
||||||
|
|
Loading…
Reference in a new issue