2006-02-02 18:07:07 +01:00
|
|
|
{stdenv, fetchurl, mk, ocaml, noweb, lua, groff }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "qcmm-2006-01-31";
|
|
|
|
src = fetchurl {
|
2008-11-14 17:57:19 +01:00
|
|
|
url = http://nixos.org/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;
|
|
|
|
}
|