summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-02-25 20:37:08 -0500
committerShea Levy <shea@shealevy.com>2018-02-25 20:37:08 -0500
commit6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366 (patch)
tree11d32ed266d30d31c4116f1bd9c51bae1a7511c8 /pkgs/development/tools
parentf79fa7794176c11530a3be3f05ffbc10f1e53003 (diff)
downloadnixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar.gz
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar.bz2
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar.lz
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar.xz
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.tar.zst
nixlib-6b1ab50738d1f61cdb9d2b2f8d85ed8368b76366.zip
Autogen: Fix unnecessary duplication during cross-compilation
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/autogen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix
index 77944297a972..660917ee9f1f 100644
--- a/pkgs/development/tools/misc/autogen/default.nix
+++ b/pkgs/development/tools/misc/autogen/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ which pkgconfig perl ]
     # autogen needs a build autogen when cross-compiling
     ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
-      buildPackages.autogen buildPackages.texinfo ];
+      buildPackages.buildPackages.autogen buildPackages.texinfo ];
   buildInputs = [
     guile libxml2
   ];