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

stdenv.mkDerivation {
  name = "automake-1.9.4";
  builder = ./builder.sh;
  setupHook = ./setup-hook.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/automake-1.9.4.tar.gz;
    md5 = "5b46bde56e321a7bab7832168cf0b9b8";
  };
  buildInputs = [perl autoconf];
}