1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/ocaml-modules/macaque/default.nix

23 lines
636 B
Nix

{ stdenv, fetchzip, ocaml, findlib, pgocaml, camlp4 }:
stdenv.mkDerivation {
name = "ocaml-macaque-0.7.2";
src = fetchzip {
url = https://github.com/ocsigen/macaque/archive/0.7.2.tar.gz;
sha256 = "14i0a8cndzndjmlkyhf31r451q99cnkndgxcj0id4qjqhdl4bmjv";
};
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 or [];
maintainers = with maintainers; [ vbgl ];
};
}