My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/tools/misc/libtool/libtool2.nix

41 lines
1.0 KiB

{ stdenv, fetchurl, m4, perl, lzma }:
stdenv.mkDerivation rec {
name = "libtool-2.2.6b";
src = fetchurl {
url = "mirror://gnu/libtool/${name}.tar.lzma";
sha256 = "1bmpp31sfjl3nzj8psvnsqrrv4gwnqzii8dxpxr6djz508yavsv6";
};
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;
doCheck = true;
meta = {
description = "GNU Libtool, a generic library support script";
longDescription = ''
GNU libtool is a generic library support script. Libtool hides
the complexity of using shared libraries behind a consistent,
portable interface.
To use libtool, add the new generic library building commands to
your Makefile, Makefile.in, or Makefile.am. See the
documentation for details.
'';
homepage = http://www.gnu.org/software/libtool/;
license = "GPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}