2015-02-04 22:39:27 +00:00
|
|
|
{ stdenv, fetchurl, m4, perl, help2man }:
|
2008-11-03 10:15:37 +00:00
|
|
|
|
2015-02-04 22:39:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 07:59:08 +00:00
|
|
|
name = "libtool-2.4.6";
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2008-11-03 10:15:37 +00:00
|
|
|
src = fetchurl {
|
2010-10-07 23:29:20 +01:00
|
|
|
url = "mirror://gnu/libtool/${name}.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
|
|
|
|
2015-02-04 22:39:27 +00:00
|
|
|
propagatedNativeBuildInputs = [ m4 ];
|
|
|
|
nativeBuildInputs = [ perl help2man ];
|
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;
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2015-02-04 22:39:27 +00:00
|
|
|
# Don't run the native `strip' when cross-compiling. This breaks at least
|
|
|
|
# with `.a' files for MinGW.
|
|
|
|
dontStrip = stdenv ? cross;
|
|
|
|
|
2008-11-03 10:22:41 +00: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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/libtool/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-11-19 22:46:40 +00:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2008-11-03 10:22:41 +00:00
|
|
|
};
|
2008-11-03 10:15:37 +00:00
|
|
|
}
|
2011-07-01 08:42:23 +01:00
|
|
|
|