From acae190bcc4fdac1262ca87e8eddaf88670c6e64 Mon Sep 17 00:00:00 2001 From: cy Date: Sun, 5 Jan 2025 04:34:14 -0500 Subject: [PATCH] overlay conduwuit on a known-good rev --- flake.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/flake.nix b/flake.nix index 87af009..4dc2417 100644 --- a/flake.nix +++ b/flake.nix @@ -65,6 +65,23 @@ (overlayPkgsFromFlake inputs.nixpkgs-stable [ # "prometheus" # fails to build on unstable ]) + (final: prev: { + conduwuit = prev.conduwuit.override (old: { + rustPlatform = old.rustPlatform // { + buildRustPackage = args: old.rustPlatform.buildRustPackage (args // { + version = "0.4.6"; + src = prev.fetchFromGitHub { + owner = "girlbossceo"; + repo = "conduwuit"; + rev = "c7ae9516767dff6767a725be3d144164c0d1ad56"; + hash = "sha256-llE6EPE70iV7gGz2c2uhRAQIhRe57cYaXfA4NnbRtrM="; + }; + cargoHash = "sha256-5KXFei6A12QrFattkbDZM2LuLueV+aKunDgy6ZAaF7E="; + doCheck = false; + }); + }; + }); + }) ]; pkgsFor = lib.genAttrs systems (