mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Adds ocaml-erm_xml
XML Parser for discrete data Homepage: https://github.com/ermine/xml
This commit is contained in:
parent
a9e4fc1079
commit
324324b024
24
pkgs/development/ocaml-modules/erm_xml/default.nix
Normal file
24
pkgs/development/ocaml-modules/erm_xml/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user