From 73023b817d76760c077e1ddab43d731d5ebc9fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Mon, 31 Oct 2022 16:06:31 +0000 Subject: [PATCH] conduit: Use dependencies from stable Partially to circumvent the upcoming openssl CVE, partially to reduce the number of dependencies. --- lib/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index da4031f..5cd7382 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -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; + }; }) ]; }