dnscrypt-proxy: fix faulty use of platforms.allBut

In 63b6498aa0 I added a faulty
use of `platforms.allBut` causing dnscrypt-proxy to continue
being built (and failing) on OS X. D'oh!
This commit is contained in:
Joachim Fasting 2016-07-26 23:10:42 +02:00
parent b52648cc9c
commit 7646bea560
No known key found for this signature in database
GPG Key ID: 7544761007FE4E08

View File

@ -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;
};
}