2019-08-09 09:42:57 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildDunePackage, cppo }:
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
2019-08-09 09:42:57 +01:00
|
|
|
buildDunePackage rec {
|
2018-11-05 10:21:46 +00:00
|
|
|
pname = "camomile";
|
2019-08-09 09:42:57 +01:00
|
|
|
version = "1.0.2";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
2017-10-19 22:09:20 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "yoriyuki";
|
2018-11-05 10:21:46 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-08-09 09:42:57 +01:00
|
|
|
sha256 = "00i910qjv6bpk0nkafp5fg97isqas0bwjf7m6rz11rsxilpalzad";
|
2017-10-19 22:09:20 +01:00
|
|
|
};
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
2019-08-09 09:42:57 +01:00
|
|
|
buildInputs = [ cppo ];
|
2017-07-13 21:46:03 +01:00
|
|
|
|
2017-10-19 22:09:20 +01:00
|
|
|
configurePhase = "ocaml configure.ml --share $out/share/camomile";
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
|
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";
|
|
|
|
};
|
* Add ocaml packages findlib, camlzip, ocaml-ssl, ocaml-batteries, menhir, camomile, ocaml-lwt, cryptokit, ocaml-cryptgps, ounit, ocaml-react
svn path=/nixpkgs/trunk/; revision=25041
2010-12-09 15:40:04 +00:00
|
|
|
}
|