From 7aff505ea77a3704824c96c822d939c66dd9448c Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Fri, 23 Aug 2024 16:13:35 +0000 Subject: [PATCH] flake: backport wcurl from unstable via overlay --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 08bc7d4..651bedf 100644 --- a/flake.nix +++ b/flake.nix @@ -152,6 +152,14 @@ inputs.secrix.nixosModules.secrix outputs.nixosModules.banananetwork ]; + config = { + nixpkgs.overlays = [ + # TODO until 24.11 + (lib.mkIf (!lib.versionAtLeast lib.version "24.11") ( + final: prev: { inherit (pkgs_unstable) wcurl; } + )) + ]; + }; }; };