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,4 @@
source $stdenv/setup
installFlags="PREFIX=$out"
preInstall="mkdir -p $out/man/man1 $out/bin"
genericBuild

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "mk-2006-01-31";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~cddouma/dist/mk-20060131.tar.gz;
md5 = "167fd4e0eea4f49def01984ec203289b";
};
builder = ./builder.sh;
}

View File

@@ -9,7 +9,7 @@ let {
};
body = stdenv.mkDerivation {
name = "uuagc";
name = "uuagc-0.9.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/uuagc-0.9.1-src.tar.gz;
md5 = "0f29cad75bd759696edc61c24d1a5db9";

View File

@@ -0,0 +1,11 @@
source $stdenv/setup
export BIN=$out/bin
export LIB=$out/lib
export MAN=$out/man
# What location for texinputs (tex macro's used by noweb)?
export TEXINPUTS=$out/share/texmf/tex/latex
export SHELL
makeFlags="-e"
installFlags="-e"
preInstall="mkdir -p $TEXINPUTS"
genericBuild

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "noweb-2.10c";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~cddouma/dist/noweb-20060201.tar.gz;
md5 = "b4813c6bc0bab9004e57edc1d7e57638";
};
builder = ./builder.sh;
}