Adds ocaml-erm_xml

XML Parser for discrete data

Homepage: https://github.com/ermine/xml
This commit is contained in:
Vincent Laporte 2015-02-18 22:10:43 +01:00
parent a9e4fc1079
commit 324324b024
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchzip, ocaml, findlib }:
let version = "0.3"; in
stdenv.mkDerivation {
name = "ocaml-erm_xml-${version}";
src = fetchzip {
url = "https://github.com/ermine/xml/archive/v${version}.tar.gz";
sha256 = "19znk5w0qiw3wij4n6w3h5bcr221yy57jf815fr8k9m8kin710g3";
};
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
meta = {
homepage = https://github.com/ermine/xml;
description = "XML Parser for discrete data";
platforms = ocaml.meta.platforms;
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}

View File

@ -3853,6 +3853,8 @@ let
eliom = callPackage ../development/ocaml-modules/eliom { };
erm_xml = callPackage ../development/ocaml-modules/erm_xml { };
ezjsonm = callPackage ../development/ocaml-modules/ezjsonm {
lwt = ocaml_lwt;
sexplib = ocaml_sexplib;