Files
nixpkgs/pkgs/development/tools/misc/libtool/default.nix
T

37 lines
988 B
Nix
Raw Normal View History

2003-12-23 20:51:58 +00:00
{stdenv, fetchurl, m4, perl}:
2008-02-15 21:25:44 +00:00
stdenv.mkDerivation rec {
name = "libtool-1.5.26";
2017-10-17 22:42:14 -04:00
2003-12-23 20:51:58 +00:00
src = fetchurl {
url = "mirror://gnu/libtool/${name}.tar.gz";
2008-02-15 21:25:44 +00:00
sha256 = "029ggq5kri1gjn6nfqmgw4w920gyfzscjjxbsxxidal5zqsawd8w";
2003-12-23 20:51:58 +00:00
};
2017-10-17 22:42:14 -04:00
nativeBuildInputs = [m4];
buildInputs = [perl];
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;
2008-11-03 10:23:33 +00:00
meta = {
2014-08-24 16:21:08 +02:00
description = "Generic library support script";
2008-11-03 10:23:33 +00:00
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 = stdenv.lib.licenses.gpl2Plus;
2016-08-02 20:50:55 +03:00
platforms = stdenv.lib.platforms.unix;
2008-11-03 10:23:33 +00:00
};
2003-12-23 20:51:58 +00:00
}