acba9240cd
It's currently the same machine, but tarballs.nixos.org should become an S3/CloudFront site eventually.
13 lines
344 B
Nix
13 lines
344 B
Nix
{stdenv, fetchurl, mk, ocaml, noweb, lua, groff }:
|
|
stdenv.mkDerivation {
|
|
name = "qcmm-2006-01-31";
|
|
src = fetchurl {
|
|
url = http://tarballs.nixos.org/qc--20060131.tar.gz;
|
|
md5 = "9097830775bcf22c9bad54f389f5db23";
|
|
};
|
|
buildInputs = [ mk ocaml noweb groff ];
|
|
patches = [ ./qcmm.patch ];
|
|
builder = ./builder.sh;
|
|
inherit lua;
|
|
}
|