summary refs log tree commit diff
path: root/pkgs/development/compilers/qcmm/default.nix
blob: b7f118666870ac9b21e80e6f0836e52833dfd75e (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://nixos.org/tarballs/qc--20060131.tar.gz;
    md5 = "9097830775bcf22c9bad54f389f5db23";
  };
  buildInputs = [ mk ocaml noweb groff ];
  patches = [ ./qcmm.patch ];
  builder = ./builder.sh;
  inherit lua;
}