2016-10-07 23:44:25 -07:00
|
|
|
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
|
2015-02-18 13:10:43 -08:00
|
|
|
|
|
|
|
let version = "0.3"; in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-09-06 12:15:10 -07:00
|
|
|
name = "ocaml-erm_xml-${version}";
|
2015-02-18 13:10:43 -08:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://github.com/ermine/xml/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "19znk5w0qiw3wij4n6w3h5bcr221yy57jf815fr8k9m8kin710g3";
|
|
|
|
};
|
|
|
|
|
2016-10-07 23:44:25 -07:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
2015-02-18 13:10:43 -08:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = https://github.com/ermine/xml;
|
|
|
|
description = "XML Parser for discrete data";
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2015-02-18 13:10:43 -08:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
|
|
|
};
|
|
|
|
}
|