mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
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 New Issue
Block a user