summary refs log tree commit diff
path: root/pkgs/development/compilers/qcmm/default.nix
blob: 508221aeaefa2c71742c2059afd8222db8cd28bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, mk, ocaml, noweb, lua, groff }: 
stdenv.mkDerivation {
  name = "qcmm-2006-01-31";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/qc--20060131.tar.gz;
    md5 = "9097830775bcf22c9bad54f389f5db23";
  };
  buildInputs = [ mk ocaml noweb groff ];
  patches = [ ./qcmm.patch ];
  builder = ./builder.sh;
  inherit lua;
}