summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake/automake-1.9.x.nix
blob: 745964accafc8bdc4e1692acdf701ab5d0a52e2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, perl, autoconf}:

stdenv.mkDerivation {
  name = "automake-1.9.6";
  builder = ./builder.sh;
  setupHook = ./setup-hook.sh;
  src = fetchurl {
    url = ftp://ftp.gnu.org/gnu/automake/automake-1.9.6.tar.gz;
    md5 = "c60f77a42f103606981d456f1615f5b4";
  };
  buildInputs = [perl autoconf];
}