xin/overlays/matrix-synapse.nix

24 lines
608 B
Nix
Raw Normal View History

let
2023-08-15 07:04:59 -06:00
hash = "sha256-VUbEERQ/UFCroSiz8Y8EsjB+uhFQXLAsK52kM6HTjjY=";
sha256 = "sha256-t65rvhkLryzba6eZH1thBMzV7y0y5XMbdbrTxC91blQ=";
2023-03-22 10:35:46 -06:00
matrix-synapse = _: super: {
matrix-synapse = super.matrix-synapse.overrideAttrs (_: rec {
2023-08-15 07:04:59 -06:00
version = "1.90.0";
pname = "matrix-synapse";
src = super.fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
rev = "v${version}";
inherit hash;
};
cargoDeps = super.rustPlatform.fetchCargoTarball {
inherit src sha256;
name = "${pname}-${version}";
};
});
};
2023-07-11 09:12:50 -06:00
in
matrix-synapse