mirror of
https://github.com/NixOS/nix.git
synced 2024-10-31 14:20:52 +00:00
Don't depend on libsodium on Darwin
It doesn't build at the moment. http://hydra.nixos.org/build/19557641
This commit is contained in:
parent
1c972cba14
commit
b4e7eec16a
@ -80,7 +80,9 @@ let
|
||||
name = "nix";
|
||||
src = tarball;
|
||||
|
||||
buildInputs = [ curl perl bzip2 openssl pkgconfig sqlite boehmgc libsodium ];
|
||||
buildInputs =
|
||||
[ curl perl bzip2 openssl pkgconfig sqlite boehmgc ]
|
||||
++ lib.optional stdenv.isLinux libsodium;
|
||||
|
||||
configureFlags = ''
|
||||
--disable-init-state
|
||||
|
Loading…
Reference in New Issue
Block a user