matrix-synapse: remove overlay, 1.127.1 reached 24.11

This commit is contained in:
teutat3s 2025-04-02 12:28:05 +02:00
parent 1de4d6bdcf
commit 6d88e853c1
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 0 additions and 19 deletions

View file

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

View file

@ -1,18 +0,0 @@
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=";
};
});
}