depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ezxmlm/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

33 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, buildDunePackage, xmlm }:
buildDunePackage rec {
pname = "ezxmlm";
version = "1.0.2";
src = fetchFromGitHub {
owner = "avsm";
repo = pname;
rev = "v${version}";
sha256 = "1dgr61f0hymywikn67inq908x5adrzl3fjx3v14l9k46x7kkacl9";
};
propagatedBuildInputs = [ xmlm ];
meta = with stdenv.lib; {
description = "Combinators to use with xmlm for parsing and selection";
longDescription = ''
An "easy" interface on top of the xmlm library. This version provides
more convenient (but far less flexible) input and output functions
that go to and from [string] values. This avoids the need to write signal
code, which is useful for quick scripts that manipulate XML.
More advanced users should go straight to the Xmlm library and use it
directly, rather than be saddled with the Ezxmlm interface. Since the
types in this library are more specific than Xmlm, it should interoperate
just fine with it if you decide to switch over.
'';
maintainers = [ maintainers.carlosdagos ];
inherit (src.meta) homepage;
license = licenses.isc;
};
}