2008-11-03 11:15:37 +01:00
|
|
|
{ stdenv, fetchurl, m4, perl, lzma }:
|
|
|
|
|
2011-07-01 09:42:23 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
2011-10-30 02:00:29 +02:00
|
|
|
name = "libtool-2.4.2";
|
2009-11-19 23:46:40 +01:00
|
|
|
|
2008-11-03 11:15:37 +01:00
|
|
|
src = fetchurl {
|
2010-10-08 00:29:20 +02:00
|
|
|
url = "mirror://gnu/libtool/${name}.tar.gz";
|
2011-10-30 02:00:29 +02:00
|
|
|
sha256 = "0649qfpzkswgcj9vqkkr9rn4nlcx80faxpyqscy2k1x9c94f93dk";
|
2008-11-03 11:15:37 +01:00
|
|
|
};
|
2009-11-19 23:46:40 +01:00
|
|
|
|
2009-11-20 23:56:58 +01:00
|
|
|
buildNativeInputs = [ lzma m4 perl ];
|
2008-11-03 11:15:37 +01:00
|
|
|
|
|
|
|
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
|
|
|
# "fixed" path in generated files!
|
|
|
|
dontPatchShebangs = true;
|
2008-11-03 11:22:41 +01:00
|
|
|
|
2009-11-20 18:09:54 +01: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 23:46:40 +01:00
|
|
|
|
2008-11-03 11:22:41 +01: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/;
|
|
|
|
|
|
|
|
license = "GPLv2+";
|
2009-11-19 23:46:40 +01:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2008-11-03 11:22:41 +01:00
|
|
|
};
|
2008-11-03 11:15:37 +01:00
|
|
|
}
|
2011-07-01 09:42:23 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
# Don't run the native `strip' when cross-compiling. This breaks at least
|
|
|
|
# with `.a' files for MinGW.
|
|
|
|
(if (stdenv ? cross)
|
2011-07-01 12:11:06 +02:00
|
|
|
then { dontStrip = true; }
|
2011-07-01 09:42:23 +02:00
|
|
|
else { }))
|