mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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:
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…
Reference in New Issue
Block a user