lix.tests: fix the eval

Without the change evaluation fails as:

    $ nix build --no-link -f. lix.tests
    error: attribute 'passthru' missing
           at pkgs/tools/package-management/lix/common.nix:263:16:
              262|       tests = {
              263|         misc = nixosTests.nix-misc.lix.passthru.override { nixPackage = self; };
                 |                ^
              264|       };
This commit is contained in:
Sergei Trofimovich
2024-06-07 09:08:22 +01:00
parent bf3faad723
commit 66c4c2c04a
+1 -1
View File
@@ -260,7 +260,7 @@ let
passthru = {
inherit aws-sdk-cpp boehmgc;
tests = {
misc = nixosTests.nix-misc.lix.passthru.override { nixPackage = self; };
misc = nixosTests.nix-misc.lix;
};
};