matrix-synapse.tools: fix the eval (delete)

Without the change the eval fails as:

    $ nix build --no-link -f. matrix-synapse.tools
    error: attribute 'tools' missing
       at pkgs/by-name/ma/matrix-synapse/package.nix:47:54:
           46|     # for backward compatibility
           47|     inherit (matrix-synapse-unwrapped) plugins tests tools;
             |                                                      ^
           48|   };
This commit is contained in:
Sergei Trofimovich 2025-02-22 16:12:49 +00:00
parent 4f59aa5ed1
commit 7d1ed12e37

View file

@ -44,7 +44,7 @@ stdenv.mkDerivation {
unwrapped = matrix-synapse-unwrapped;
# for backward compatibility
inherit (matrix-synapse-unwrapped) plugins tests tools;
inherit (matrix-synapse-unwrapped) plugins tests;
};
# Carry the maintainer, licenses, and various useful information.