forked from mirrors/nixpkgs
add stub for automake 1.10
svn path=/nixpkgs/trunk/; revision=7481
This commit is contained in:
parent
9d76685ded
commit
331ed07b8c
12
pkgs/development/tools/misc/automake/automake-1.10.x.nix
Normal file
12
pkgs/development/tools/misc/automake/automake-1.10.x.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, perl, autoconf}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "automake-1.10";
|
||||
builder = ./builder.sh;
|
||||
setupHook = ./setup-hook.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/automake/automake-1.10.tar.bz2;
|
||||
md5 = "0e2e0f757f9e1e89b66033905860fded";
|
||||
};
|
||||
buildInputs = [perl autoconf];
|
||||
}
|
Loading…
Reference in a new issue