python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / xml-light / default.nix
blob010d7f8e1dbf6d18a0ea74ba4e6488e543ec21f9
1 { stdenv, lib, fetchFromGitHub, ocaml, findlib, gitUpdater }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml${ocaml.version}-xml-light";
5   version = "2.4";
7   src = fetchFromGitHub {
8     owner = "ncannasse";
9     repo = "xml-light";
10     rev = version;
11     sha256 = "sha256-2txmkl/ZN5RGaLQJmr+orqwB4CbFk2RpLJd4gr7kPiE=";
12   };
14   nativeBuildInputs = [ ocaml findlib ];
16   strictDeps = true;
18   createFindlibDestdir = true;
20   installPhase = ''
21     runHook preInstall
22     make install_ocamlfind
23     mkdir -p $out/share
24     cp -vai doc $out/share/
25     runHook postInstall
26   '';
28   passthru.updateScript = gitUpdater { };
30   meta = {
31     description = "Minimal Xml parser and printer for OCaml";
32     longDescription = ''
33       Xml-Light provides functions to parse an XML document into an OCaml
34       data structure, work with it, and print it back to an XML
35       document. It support also DTD parsing and checking, and is
36       entirely written in OCaml, hence it does not require additional C
37       library.
38     '';
39     homepage = "http://tech.motion-twin.com/xmllight.html";
40     license = lib.licenses.lgpl21;
41     maintainers = [ lib.maintainers.romildo ];
42     inherit (ocaml.meta) platforms;
43   };