aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix b/nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix
new file mode 100644
index 00000000000..35b5c73b578
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/erm_xml/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild }:
+
+if !stdenv.lib.versionAtLeast ocaml.version "4.02"
+then throw "erm_xml is not available for OCaml ${ocaml.version}"
+else
+
+let version = "0.3+20180112"; in
+
+stdenv.mkDerivation {
+ name = "ocaml${ocaml.version}-erm_xml-${version}";
+
+ src = fetchzip {
+ url = "https://github.com/hannesm/xml/archive/bbabdade807d8281fc48806da054b70dfe482479.tar.gz";
+ sha256 = "1gawpmg8plip0wia0xq60m024dn7l3ykwbjpbqx9f9bdmx74n1rr";
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild ];
+
+ createFindlibDestdir = true;
+
+ meta = {
+ homepage = https://github.com/hannesm/xml;
+ description = "XML Parser for discrete data";
+ platforms = ocaml.meta.platforms or [];
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = with stdenv.lib.maintainers; [ vbgl ];
+ };
+}