1
0
Fork 0
forked from pub-solar/infra

Merge pull request 'security: matrix-synapse: update to 1.127.1' () from synapse-security into main

Reviewed-on: 
This commit is contained in:
teutat3s 2025-03-28 14:19:40 +00:00
commit 6f195ac05a
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873
2 changed files with 19 additions and 0 deletions

View file

@ -19,6 +19,7 @@
nextcloud-skeleton = prev.callPackage ./pkgs/nextcloud-skeleton { };
}
)
(import ./matrix-synapse.nix)
];
}
);

View file

@ -0,0 +1,18 @@
final: prev: {
matrix-synapse-unwrapped = prev.matrix-synapse-unwrapped.overrideAttrs (oldAttrs: rec {
inherit (oldAttrs) pname;
version = "1.127.1";
src = prev.fetchFromGitHub {
owner = "element-hq";
repo = "synapse";
rev = "v${version}";
hash = "sha256-DNUKbb+d3BBp8guas6apQ4yFeXCc0Ilijtbt1hZkap4=";
};
cargoDeps = prev.rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
hash = "sha256-wI3vOfR5UpVFls2wPfgeIEj2+bmWdL3pDSsKfT+ysw8=";
};
});
}