2006-02-02 18:07:07 +01:00
|
|
|
{stdenv, fetchurl, mk, ocaml, noweb, lua, groff }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "qcmm-2006-01-31";
|
|
|
|
src = fetchurl {
|
2006-10-12 15:50:54 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/qc--20060131.tar.gz;
|
2006-02-02 18:07:07 +01:00
|
|
|
md5 = "9097830775bcf22c9bad54f389f5db23";
|
|
|
|
};
|
|
|
|
buildInputs = [ mk ocaml noweb groff ];
|
|
|
|
patches = [ ./qcmm.patch ];
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit lua;
|
|
|
|
}
|