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!
This commit is contained in:
parent
b52648cc9c
commit
7646bea560
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user