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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
952 B
Nix
Raw Normal View History

{stdenv, lib, fetchurl, fetchpatch, ocaml, findlib, camlp4}:
2017-10-20 00:09:20 +03:00
2019-08-14 00:52:01 +03:00
stdenv.mkDerivation {
pname = "camomile";
2017-10-20 00:09:20 +03:00
version = "0.8.5";
src = fetchurl {
url = "https://github.com/yoriyuki/Camomile/releases/download/rel-0.8.5/camomile-0.8.5.tar.bz2";
2017-10-20 00:09:20 +03:00
sha256 = "003ikpvpaliy5hblhckfmln34zqz0mk3y2m1fqvbjngh3h2np045";
};
patches = [ (fetchpatch {
url = "https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/camomile/camomile.0.8.5/files/4.05-typing-fix.patch";
2017-10-20 00:09:20 +03:00
sha256 = "167279lia6qx62mdcyc5rjsi4gf4yi52wn9mhgd9y1v3754z7fwb";
})];
nativeBuildInputs = [ocaml findlib camlp4 ];
strictDeps = true;
2017-10-20 00:09:20 +03:00
createFindlibDestdir = true;
meta = {
homepage = "https://github.com/yoriyuki/Camomile/tree/master/Camomile";
2017-10-20 00:09:20 +03:00
description = "A comprehensive Unicode library for OCaml";
license = lib.licenses.lgpl21;
inherit (ocaml.meta) platforms;
2017-10-20 00:09:20 +03:00
maintainers = [
lib.maintainers.maggesi
2017-10-20 00:09:20 +03:00
];
};
}