about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/texinfo
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-21 16:57:24 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-08-21 16:57:24 +0000
commit508fc749f483318e2a7f700012534f24f96dd1d3 (patch)
tree0c0f6f476cf3cd87475ba0fbf5f0bb515f915a83 /pkgs/development/tools/misc/texinfo
parent5cdc569477c34b95bd3aed614f221bc133f6aee5 (diff)
downloadnixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar.gz
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar.bz2
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar.lz
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar.xz
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.tar.zst
nixlib-508fc749f483318e2a7f700012534f24f96dd1d3.zip
Making texinfo look nicer related to cross-build (we had some cleaning up to do for the time when we rebuild stdenv. It looks like a good time for that)
svn path=/nixpkgs/branches/stdenv-updates/; revision=23316
Diffstat (limited to 'pkgs/development/tools/misc/texinfo')
-rw-r--r--pkgs/development/tools/misc/texinfo/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/development/tools/misc/texinfo/default.nix b/pkgs/development/tools/misc/texinfo/default.nix
index 09fe6ed029c3..95d98582549e 100644
--- a/pkgs/development/tools/misc/texinfo/default.nix
+++ b/pkgs/development/tools/misc/texinfo/default.nix
@@ -8,16 +8,8 @@ stdenv.mkDerivation rec {
     sha256 = "1rf9ckpqwixj65bw469i634897xwlgkm5i9g2hv3avl6mv7b0a3d";
   };
 
-  buildInputs = [ ncurses lzma ];
-
-  # !!! This should be set as usual attributes - we set them as
-  # crossAttrs only not to change the usual stdenv hash
-  # (in the normal stdenv, these get mapped all to buildNativeInputs,
-  #  but unfortunately in the opposite order, thus getting a new hash)
-  crossAttrs = {
-    buildNativeInputs = [ lzma ];
-    buildInputs = [ ncurses ];
-  };
+  buildInputs = [ ncurses ];
+  buildNativeINputs = [ lzma ];
 
   # Disabled because we don't have zdiff in the stdenv bootstrap.
   #doCheck = true;