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:
parent
33bba5f0b3
commit
8320bbaaa3
22
pkgs/development/ocaml-modules/macaque/default.nix
Normal file
22
pkgs/development/ocaml-modules/macaque/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3493,6 +3493,8 @@ let
|
|||||||
|
|
||||||
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
|
lambdaTerm = callPackage ../development/ocaml-modules/lambda-term { };
|
||||||
|
|
||||||
|
macaque = callPackage ../development/ocaml-modules/macaque { };
|
||||||
|
|
||||||
menhir = callPackage ../development/ocaml-modules/menhir { };
|
menhir = callPackage ../development/ocaml-modules/menhir { };
|
||||||
|
|
||||||
merlin = callPackage ../development/tools/ocaml/merlin { };
|
merlin = callPackage ../development/tools/ocaml/merlin { };
|
||||||
|
Loading…
Reference in New Issue
Block a user