2017-06-28 13:29:17 -07:00
|
|
|
{ stdenv, fetchurl, m4, perl, help2man
|
|
|
|
}:
|
2008-11-03 02:15:37 -08:00
|
|
|
|
2012-08-24 18:23:42 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 00:59:08 -07:00
|
|
|
name = "libtool-2.4.6";
|
2009-11-19 14:46:40 -08:00
|
|
|
|
2008-11-03 02:15:37 -08:00
|
|
|
src = fetchurl {
|
2010-10-07 15:29:20 -07:00
|
|
|
url = "mirror://gnu/libtool/${name}.tar.gz";
|
2015-03-26 00:59:08 -07:00
|
|
|
sha256 = "1qq61k6lp1fp75xs398yzi6wvbx232l7xbyn3p13cnh27mflvgg3";
|
2008-11-03 02:15:37 -08:00
|
|
|
};
|
2009-11-19 14:46:40 -08:00
|
|
|
|
2012-08-24 18:23:42 -07:00
|
|
|
outputs = [ "out" "lib" ];
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2017-10-17 21:02:38 -07:00
|
|
|
nativeBuildInputs = [ perl help2man m4 ];
|
2017-08-14 13:39:03 -07:00
|
|
|
propagatedBuildInputs = [ m4 ];
|
2012-08-24 18:23:42 -07:00
|
|
|
|
2008-11-03 02:15:37 -08:00
|
|
|
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
|
|
|
# "fixed" path in generated files!
|
|
|
|
dontPatchShebangs = true;
|
2008-11-03 02:22:41 -08:00
|
|
|
|
2009-11-20 09:09:54 -08: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-24 20:20:18 -07:00
|
|
|
doInstallCheck = false;
|
2009-11-19 14:46:40 -08:00
|
|
|
|
2012-08-24 18:23:42 -07:00
|
|
|
# Don't run the native `strip' when cross-compiling. This breaks at least
|
|
|
|
# with `.a' files for MinGW.
|
2018-08-20 11:43:41 -07:00
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
2012-08-24 18:23:42 -07:00
|
|
|
|
2008-11-03 02:22:41 -08:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 10:22:13 -08:00
|
|
|
homepage = https://www.gnu.org/software/libtool/;
|
2008-11-03 02:22:41 -08:00
|
|
|
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-11-19 14:46:40 -08:00
|
|
|
|
2015-01-13 13:33:24 -08:00
|
|
|
maintainers = [ ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-11-03 02:22:41 -08:00
|
|
|
};
|
2008-11-03 02:15:37 -08:00
|
|
|
}
|