From ced54d27a1514e94fc08fdd16d6563a403cde200 Mon Sep 17 00:00:00 2001 From: DavHau Date: Wed, 7 Oct 2020 12:17:00 +0700 Subject: [PATCH] package-fix: remove patches for httpx --- mach_nix/fixes.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mach_nix/fixes.nix b/mach_nix/fixes.nix index 035e4bb..a82c868 100644 --- a/mach_nix/fixes.nix +++ b/mach_nix/fixes.nix @@ -50,6 +50,13 @@ rec { # - pyver (python version used) # ############################################## + httpx.remove-patches = { + _cond = { prov, ver, ... }: + prov != "nixpkgs" && + comp_ver ver "!=" pkgs.python3Packages.httpx.version; + patches = []; + }; + ldap0.add-inputs = { buildInputs.add = with pkgs; [ openldap.dev cyrus_sasl.dev ]; };