Skip to content

Commit

Permalink
ocamlPackages.camomile: 0.8.5 -> 0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vbgl committed Oct 20, 2017
1 parent 5da5af5 commit 68ed8f6
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 23 deletions.
30 changes: 30 additions & 0 deletions pkgs/development/ocaml-modules/camomile/0.8.5.nix
@@ -0,0 +1,30 @@
{stdenv, fetchurl, fetchpatch, ocaml, findlib, camlp4}:

stdenv.mkDerivation rec {
name = "camomile-${version}";
version = "0.8.5";

src = fetchurl {
url = https://github.com/yoriyuki/Camomile/releases/download/rel-0.8.5/camomile-0.8.5.tar.bz2;
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;
sha256 = "167279lia6qx62mdcyc5rjsi4gf4yi52wn9mhgd9y1v3754z7fwb";
})];

buildInputs = [ocaml findlib camlp4];

createFindlibDestdir = true;

meta = {
homepage = https://github.com/yoriyuki/Camomile/tree/master/Camomile;
description = "A comprehensive Unicode library for OCaml";
license = stdenv.lib.licenses.lgpl21;
platforms = ocaml.meta.platforms or [];
maintainers = [
stdenv.lib.maintainers.z77z
];
};
}
41 changes: 19 additions & 22 deletions pkgs/development/ocaml-modules/camomile/default.nix
@@ -1,30 +1,27 @@
{stdenv, fetchurl, fetchpatch, ocaml, findlib, camlp4}:
{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, cppo }:

stdenv.mkDerivation rec {
name = "camomile-${version}";
version = "0.8.5";
version = "0.8.6";
name = "ocaml${ocaml.version}-camomile-${version}";

src = fetchurl {
url = https://github.com/yoriyuki/Camomile/releases/download/rel-0.8.5/camomile-0.8.5.tar.bz2;
sha256 = "003ikpvpaliy5hblhckfmln34zqz0mk3y2m1fqvbjngh3h2np045";
};
src = fetchFromGitHub {
owner = "yoriyuki";
repo = "camomile";
rev = "rel-${version}";
sha256 = "1jq1xhaikczk6lbvas7c35aa04q0kjaqd8m54c4jivpj80yvg4x9";
};

patches = [ (fetchpatch {
url = https://raw.githubusercontent.com/ocaml/opam-repository/master/packages/camomile/camomile.0.8.5/files/4.05-typing-fix.patch;
sha256 = "167279lia6qx62mdcyc5rjsi4gf4yi52wn9mhgd9y1v3754z7fwb";
})];
buildInputs = [ ocaml findlib jbuilder cppo ];

buildInputs = [ocaml findlib camlp4];
configurePhase = "ocaml configure.ml --share $out/share/camomile";

createFindlibDestdir = true;
inherit (jbuilder) installPhase;

meta = {
homepage = https://github.com/yoriyuki/Camomile/tree/master/Camomile;
description = "A comprehensive Unicode library for OCaml";
license = stdenv.lib.licenses.lgpl21;
platforms = ocaml.meta.platforms or [];
maintainers = [
stdenv.lib.maintainers.z77z
];
};
meta = {
inherit (ocaml.meta) platforms;
inherit (src.meta) homepage;
maintainers = [ stdenv.lib.maintainers.vbgl ];
license = stdenv.lib.licenses.lgpl21;
description = "A Unicode library for OCaml";
};
}
5 changes: 4 additions & 1 deletion pkgs/top-level/ocaml-packages.nix
Expand Up @@ -98,7 +98,10 @@ let
camlzip = callPackage ../development/ocaml-modules/camlzip { };

camomile_0_8_2 = callPackage ../development/ocaml-modules/camomile/0.8.2.nix { };
camomile = callPackage ../development/ocaml-modules/camomile { };
camomile =
if lib.versionOlder "4.03" ocaml.version
then callPackage ../development/ocaml-modules/camomile { }
else callPackage ../development/ocaml-modules/camomile/0.8.5.nix { };

camlimages_4_0 =
if lib.versionOlder "4.02" ocaml.version
Expand Down

0 comments on commit 68ed8f6

Please sign in to comment.