2017-06-28 21:29:17 +01:00
|
|
|
{ stdenv, fetchurl, m4, perl, help2man
|
|
|
|
}:
|
2008-11-03 10:15:37 +00:00
|
|
|
|
2012-08-25 02:23:42 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-24 22:29:23 +01:00
|
|
|
pname = "libtool";
|
|
|
|
version = "2.4.6";
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2008-11-03 10:15:37 +00:00
|
|
|
src = fetchurl {
|
2019-05-24 22:29:23 +01:00
|
|
|
url = "mirror://gnu/libtool/${pname}-${version}.tar.gz";
|
2015-03-26 07:59:08 +00:00
|
|
|
sha256 = "1qq61k6lp1fp75xs398yzi6wvbx232l7xbyn3p13cnh27mflvgg3";
|
2008-11-03 10:15:37 +00:00
|
|
|
};
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2012-08-25 02:23:42 +01:00
|
|
|
outputs = [ "out" "lib" ];
|
2014-08-27 00:14:09 +01:00
|
|
|
|
2017-10-18 05:02:38 +01:00
|
|
|
nativeBuildInputs = [ perl help2man m4 ];
|
2017-08-14 21:39:03 +01:00
|
|
|
propagatedBuildInputs = [ m4 ];
|
2012-08-25 02:23:42 +01:00
|
|
|
|
2008-11-03 10:15:37 +00:00
|
|
|
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
|
|
|
# "fixed" path in generated files!
|
|
|
|
dontPatchShebangs = true;
|
2008-11-03 10:22:41 +00:00
|
|
|
|
2009-11-20 17:09:54 +00:00
|
|
|
# XXX: The GNU ld wrapper does all sorts of nasty things wrt. RPATH, which
|
|
|
|
# leads to the failure of a number of tests.
|
|
|
|
doCheck = false;
|
2018-04-25 04:20:18 +01:00
|
|
|
doInstallCheck = false;
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2019-05-24 22:29:23 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2008-11-03 10:22:41 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/libtool/";
|
2019-05-24 22:29:23 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2019-05-24 22:29:23 +01:00
|
|
|
platforms = platforms.unix;
|
2008-11-03 10:22:41 +00:00
|
|
|
};
|
2008-11-03 10:15:37 +00:00
|
|
|
}
|