From 7646bea5601fd786e0ec1a0f69fb9461749c4173 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 26 Jul 2016 23:10:42 +0200 Subject: [PATCH] dnscrypt-proxy: fix faulty use of platforms.allBut In 63b6498aa08fb72a756a242ec2c93c26e7cded99 I added a faulty use of `platforms.allBut` causing dnscrypt-proxy to continue being built (and failing) on OS X. D'oh! --- pkgs/tools/networking/dnscrypt-proxy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix index 985344616e9..3dadbeedd4d 100644 --- a/pkgs/tools/networking/dnscrypt-proxy/default.nix +++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation rec { license = licenses.isc; maintainers = with maintainers; [ joachifm jgeerds ]; # upstream claims OSX support, but Hydra fails - platforms = with platforms; allBut [ darwin ]; + platforms = with platforms; allBut darwin; }; }