* Updated to reflect the changes to the grammar.

svn path=/nixpkgs/trunk/; revision=464
This commit is contained in:
Eelco Dolstra
2003-11-03 10:22:00 +00:00
parent 2041469c69
commit 77d20ed799
26 changed files with 397 additions and 379 deletions
+10 -10
View File
@@ -1,10 +1,10 @@
{stdenv, fetchurl}: derivation
{ name = "gawk-3.1.3"
, system = stdenv.system
, builder = ./builder.sh
, src = fetchurl
{ url = ftp://ftp.nluug.nl/pub/gnu/gawk/gawk-3.1.3.tar.bz2
, md5 = "a116eec17e7ba085febb74c7758823bd"
}
, stdenv = stdenv
}
{stdenv, fetchurl}: derivation {
name = "gawk-3.1.3";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/gawk/gawk-3.1.3.tar.bz2;
md5 = "a116eec17e7ba085febb74c7758823bd";
};
stdenv = stdenv;
}