nixpkgs/pkgs/development/ocaml-modules/camomile/default.nix

33 lines
823 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, ocaml, dune, cppo, findlib }:
stdenv.mkDerivation rec {
pname = "camomile";
2018-10-04 01:24:28 +01:00
version = "1.0.1";
2017-10-19 22:09:20 +01:00
src = fetchFromGitHub {
owner = "yoriyuki";
repo = pname;
rev = version;
2018-10-04 01:24:28 +01:00
sha256 = "1pfxr9kzkpd5bsdqrpxasfxkawwkg4cpx3m1h6203sxi7qv1z3fn";
2017-10-19 22:09:20 +01:00
};
buildInputs = [ ocaml dune findlib cppo ];
2017-10-19 22:09:20 +01:00
configurePhase = "ocaml configure.ml --share $out/share/camomile";
# Use jbuilder executable because it breaks on dune>=1.10
# https://github.com/yoriyuki/Camomile/commit/505202b58e22628f80bbe15ee76b9470a5bd2f57#r33816944
buildPhase = ''
jbuilder build -p ${pname}
'';
inherit (dune) installPhase;
2017-10-19 22:09:20 +01:00
meta = {
inherit (src.meta) homepage;
maintainers = [ stdenv.lib.maintainers.vbgl ];
license = stdenv.lib.licenses.lgpl21;
description = "A Unicode library for OCaml";
};
}