mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
aa84bce64d
svn path=/nixpkgs/trunk/; revision=13299
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://nixos.org/tarballs/qc--20060131.tar.gz;
|
|
md5 = "9097830775bcf22c9bad54f389f5db23";
|
|
};
|
|
buildInputs = [ mk ocaml noweb groff ];
|
|
patches = [ ./qcmm.patch ];
|
|
builder = ./builder.sh;
|
|
inherit lua;
|
|
}
|