3
0
Fork 0
forked from mirrors/nixpkgs

Added camlp5 the preprocessor-pretty-printer for OCaml

svn path=/nixpkgs/trunk/; revision=18068
This commit is contained in:
Marco Maggesi 2009-11-02 10:47:24 +00:00
parent 3296f78ca9
commit c4533b8d24
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{stdenv, fetchurl, ocaml, transitional ? false}:
let
pname = "camlp5";
version = "5.12";
webpage = http://pauillac.inria.fr/~ddr/camlp5/;
in
stdenv.mkDerivation {
name = "${pname}${if transitional then "_transitional" else ""}-${version}";
src = fetchurl {
url = "${webpage}/distrib/src/${pname}-${version}.tgz";
sha256 = "985a5e373ea75f89667e71bc857c868c395769fce664cba88aa76f93b0ad8461";
};
buildInputs = [ ocaml ];
prefixKey = "-prefix ";
configureFlags = if transitional then "--transitional" else "--strict";
buildFlags = "world.opt";
meta = {
description = "Preprocessor-pretty-printer for OCaml.";
longDescription = ''
Camlp5 is a preprocessor and pretty-printer for OCaml programs.
It also provides parsing and printing tools.
'';
homepage = "${webpage}";
license = "BSD";
};
}

View file

@ -5220,6 +5220,13 @@ let
inherit libuuid zlib acl;
};
camlp5_strict = import ../development/tools/ocaml/camlp5
{ inherit stdenv fetchurl ocaml; };
camlp5_transitional = import ../development/tools/ocaml/camlp5
{ inherit stdenv fetchurl ocaml;
transitional = true; };
cpufrequtils = (
import ../os-specific/linux/cpufrequtils {
inherit fetchurl stdenv libtool gettext;