summary refs log blame commit diff
path: root/pkgs/development/tools/misc/automake/automake-1.7.x.nix
blob: 6a0f466cf372342e90a390d20024db7909affaa4 (plain) (tree)
1
2
3
4
5
6
7
8






                                   
                                                                   



                                             
{stdenv, fetchurl, perl, autoconf}:

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