summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-11-26 16:41:18 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2020-01-03 15:20:55 -0500
commit8b41b16a9f1210d8a4556a9c412072fffbf4fb95 (patch)
tree846ddf12ec2abc2dcd421a4994feebcc53edb9a1 /pkgs/os-specific
parent6f8b2f3961ef19298cccce24faea0af15b0493eb (diff)
downloadnixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar.gz
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar.bz2
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar.lz
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar.xz
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.tar.zst
nixpkgs-8b41b16a9f1210d8a4556a9c412072fffbf4fb95.zip
cctools: fixup gnu-config detection
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/darwin/cctools/port.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/pkgs/os-specific/darwin/cctools/port.nix b/pkgs/os-specific/darwin/cctools/port.nix
index 07e38b0b015..ff8f3eb5e26 100644
--- a/pkgs/os-specific/darwin/cctools/port.nix
+++ b/pkgs/os-specific/darwin/cctools/port.nix
@@ -30,12 +30,7 @@ let
 
     outputs = [ "out" "dev" ];
 
-    nativeBuildInputs = [ autoconf automake ]
-
-      # TODO: remove on next hash change, libtool is unnecessary with autoreconfHook
-      ++ stdenv.lib.optional (stdenv.targetPlatform == stdenv.hostPlatform) libtool
-
-      ++ [ autoreconfHook ];
+    nativeBuildInputs = [ autoconf automake libtool autoreconfHook ];
     buildInputs = [ libuuid ]
       ++ stdenv.lib.optionals stdenv.isDarwin [ libcxxabi libobjc ]
       ++ stdenv.lib.optional enableTapiSupport libtapi;