Commit 300e0f70 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

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|     };
parent 6f6ed28c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ stdenv.mkDerivation (finalAttrs: {

  passthru = {
    tests = {
      inherit (nixosTests) docuseal-postgresql docuseal-sqlite;
      inherit (nixosTests) docuseal-psql docuseal-sqlite;
    };
    updateScript = ./update.sh;
  };