conduit: Use dependencies from stable

Partially to circumvent the upcoming openssl CVE, partially to reduce
the number of dependencies.
pull/73/head
Tristan Daniël Maat 2022-10-31 16:06:31 +00:00
parent b3e8b0e85c
commit 73023b817d
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,9 @@ in {
{
nixpkgs.overlays = [
(self: super: {
matrix-conduit = nixpkgs-unstable.legacyPackages.${system}.matrix-conduit;
matrix-conduit = nixpkgs-unstable.legacyPackages.${system}.matrix-conduit.override {
inherit (self) stdenv lib fetchFromGitLab rustPlatform pkg-config rocksdb;
};
})
];
}