Commit 7d1ed12e authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

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|   };
parent 4f59aa5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.