docuseal.tests: fix the eval
Without the change the eval fails as:
$ nix build --no-link -f. docuseal.tests
error:
… while evaluating the attribute 'docuseal-postgresql'
at pkgs/by-name/do/docuseal/package.nix:121:28:
120| tests = {
121| inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
| ^
122| };
error: attribute 'docuseal-postgresql' missing
at pkgs/by-name/do/docuseal/package.nix:121:28:
120| tests = {
121| inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
| ^
122| };
This commit is contained in:
@@ -118,7 +118,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
passthru = {
|
||||
tests = {
|
||||
inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
|
||||
inherit (nixosTests) docuseal-psql docuseal-sqlite;
|
||||
};
|
||||
updateScript = ./update.sh;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user