added version to uuagc

added: noweb, lua-5.x, lua-4.x, mk, qc-- (as qcmm)

svn path=/nixpkgs/trunk/; revision=4681
This commit is contained in:
Christof Douma
2006-02-02 17:07:07 +00:00
parent 951754b034
commit 1fa4c66b73
14 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
source $stdenv/setup
makeFlags="all so sobin"
installFlags="INSTALL_ROOT=$out"
genericBuild

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lua-4.0.1";
src = fetchurl {
url = http://www.lua.org/ftp/lua-4.0.1.tar.gz;
md5 = "a31d963dbdf727f9b34eee1e0d29132c";
};
builder= ./builder.sh;
}