nixpkgs/pkgs/development/tools/misc/libtool/libtool2.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2017-06-28 20:29:17 +00:00
{ stdenv, fetchurl, m4, perl, help2man
}:
stdenv.mkDerivation rec {
2019-05-24 21:29:23 +00:00
pname = "libtool";
version = "2.4.6";
src = fetchurl {
2019-05-24 21:29:23 +00:00
url = "mirror://gnu/libtool/${pname}-${version}.tar.gz";
2015-03-26 07:59:08 +00:00
sha256 = "1qq61k6lp1fp75xs398yzi6wvbx232l7xbyn3p13cnh27mflvgg3";
};
outputs = [ "out" "lib" ];
2014-08-26 23:14:09 +00:00
2017-10-18 04:02:38 +00:00
nativeBuildInputs = [ perl help2man m4 ];
propagatedBuildInputs = [ m4 ];
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
# "fixed" path in generated files!
dontPatchShebangs = true;
# 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;
doInstallCheck = false;
2019-05-24 21:29:23 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
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 = "https://www.gnu.org/software/libtool/";
2019-05-24 21:29:23 +00:00
license = licenses.gpl2Plus;
2015-01-13 21:33:24 +00:00
maintainers = [ ];
2019-05-24 21:29:23 +00:00
platforms = platforms.unix;
};
}