ocaml-macaque: new package

MaCaQue (or macaque) is a DSL for SQL Queries in Caml.

Homepage: https://github.com/ocsigen/macaque
This commit is contained in:
Vincent Laporte 2014-10-10 23:58:08 +01:00
parent 33bba5f0b3
commit 8320bbaaa3
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{stdenv, fetchurl, ocaml, findlib, pgocaml, camlp4}:
stdenv.mkDerivation {
name = "ocaml-macaque-0.7.1";
src = fetchurl {
url = https://github.com/ocsigen/macaque/archive/0.7.1.tar.gz;
sha256 = "0wnq3pgpcrfpivr8j7p827rhag6hdx0yr0bdvma0hw1g30vwf9qa";
};
buildInputs = [ ocaml findlib camlp4 ];
propagatedBuildInputs = [ pgocaml ];
createFindlibDestdir = true;
meta = with stdenv.lib; {
description = "Macros for Caml Queries";
homepage = https://github.com/ocsigen/macaque;
license = licenses.lgpl2;
platforms = ocaml.meta.platforms;
maintainers = with maintainers; [ vbgl ];
};
}

View file

@ -3493,6 +3493,8 @@ let
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
macaque = callPackage ../development/ocaml-modules/macaque { };
menhir = callPackage ../development/ocaml-modules/menhir { };
merlin = callPackage ../development/tools/ocaml/merlin { };