1{stdenv, fetchurl, m4, perl}:
2
3stdenv.mkDerivation rec {
4 name = "libtool-1.5.26";
5
6 src = fetchurl {
7 url = "mirror://gnu/libtool/${name}.tar.gz";
8 sha256 = "029ggq5kri1gjn6nfqmgw4w920gyfzscjjxbsxxidal5zqsawd8w";
9 };
10
11 buildInputs = [m4 perl];
12
13 # Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
14 # "fixed" path in generated files!
15 dontPatchShebangs = true;
16
17 meta = {
18 description = "Generic library support script";
19
20 longDescription = ''
21 GNU libtool is a generic library support script. Libtool hides
22 the complexity of using shared libraries behind a consistent,
23 portable interface.
24
25 To use libtool, add the new generic library building commands to
26 your Makefile, Makefile.in, or Makefile.am. See the
27 documentation for details.
28 '';
29
30 homepage = http://www.gnu.org/software/libtool/;
31
32 license = stdenv.lib.licenses.gpl2Plus;
33 };
34}