Merge pull request #201906 from mweinelt/rust-synapse-compress-state-darwin

This commit is contained in:
Martin Weinelt 2022-11-19 16:55:59 +01:00 committed by GitHub
commit f6cf27bea7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, rustPlatform, python3, fetchFromGitHub, pkg-config, openssl }:
{ lib, stdenv, rustPlatform, python3, fetchFromGitHub, pkg-config, openssl }:
rustPlatform.buildRustPackage rec {
pname = "rust-synapse-compress-state";
@ -22,6 +22,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [ openssl ];
meta = with lib; {
broken = stdenv.isDarwin;
description = "A tool to compress some state in a Synapse instance's database";
homepage = "https://github.com/matrix-org/rust-synapse-compress-state";
license = licenses.asl20;