summary refs log tree commit diff
path: root/pkgs/tools/networking/s6-networking
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2017-03-26 17:30:41 -0500
committerPatrick Mahoney <pat@polycrystal.org>2017-03-26 17:30:41 -0500
commit09a5007797e96ae5d1b2318bb164ec9c81215561 (patch)
treeae82370e771008c100f1c58f6f46e13506ce6441 /pkgs/tools/networking/s6-networking
parenteab30996bd6a8ed2b74f49276146fab8c6d17597 (diff)
downloadnixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar.gz
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar.bz2
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar.lz
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar.xz
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.tar.zst
nixlib-09a5007797e96ae5d1b2318bb164ec9c81215561.zip
skarnet.org packages: fix darwin build
The configure scripts have been changed so that `--build` is now the
way to specify (non-cross compiling) build target, which is necessary
on darwin for binary compatibility across darwin versions.
Diffstat (limited to 'pkgs/tools/networking/s6-networking')
-rw-r--r--pkgs/tools/networking/s6-networking/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/s6-networking/default.nix b/pkgs/tools/networking/s6-networking/default.nix
index 1ddd4fad4dc0..6574a02bb921 100644
--- a/pkgs/tools/networking/s6-networking/default.nix
+++ b/pkgs/tools/networking/s6-networking/default.nix
@@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
     "--with-dynlib=${s6}/lib"
     "--with-dynlib=${s6Dns}/lib"
   ]
-  ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}");
+  ++ (stdenv.lib.optional stdenv.isDarwin "--build=${stdenv.system}");
 
   meta = {
     homepage = http://www.skarnet.org/software/s6-networking/;