3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/libtool/libtool2.nix
Ludovic Courtès e967438c48 Add GNU Libtool 2.2.x.
svn path=/nixpkgs/trunk/; revision=13176
2008-11-03 10:15:37 +00:00

19 lines
453 B
Nix

{ stdenv, fetchurl, m4, perl, lzma }:
stdenv.mkDerivation rec {
name = "libtool-2.2.6a";
src = fetchurl {
url = "mirror://gnu/libtool/${name}.tar.lzma";
sha256 = "12k3m7d0ngcwwahicncxbyd1155ij63ylr8372f0q8xbzq59c8hx";
};
buildInputs = [ lzma m4 perl ];
unpackCmd = "lzma -d < $src | tar xv";
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;
}