summary refs log tree commit diff
path: root/pkgs/development/tools/misc/libtool/default.nix
blob: d9f13f11763e7be27ecb577d0b1e921146adbfd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, m4, perl}:
derivation {
  name = "autoconf-2.58";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = http://ftp.gnu.org/gnu/libtool/libtool-1.5.tar.gz;
    md5 = "0e1844f25e2ad74c3715b5776d017545";
  };
  stdenv = stdenv;
  m4 = m4;
  perl = perl;
}