biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / xmlm / default.nix
blob82d64566b9a6f4f8391e27112945056b5f4a5230
1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg }:
2 let
3   pname = "xmlm";
4   webpage = "https://erratique.ch/software/${pname}";
5 in
7 if lib.versionOlder ocaml.version "4.05"
8 then throw "xmlm is not available for OCaml ${ocaml.version}"
9 else
11 stdenv.mkDerivation rec {
12   name = "ocaml${ocaml.version}-${pname}-${version}";
13   version = "1.4.0";
15   src = fetchurl {
16     url = "${webpage}/releases/${pname}-${version}.tbz";
17     sha256 = "sha256-CRJSJY490WMgw85N2yG81X79nIwuv7eZ7mpUPtSS2fo=";
18   };
20   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
21   buildInputs = [ topkg ];
23   strictDeps = true;
25   inherit (topkg) buildPhase installPhase;
27   meta = with lib; {
28     description = "An OCaml streaming codec to decode and encode the XML data format";
29     homepage = webpage;
30     license = licenses.isc;
31     maintainers = [ maintainers.vbgl ];
32     mainProgram = "xmltrip";
33     inherit (ocaml.meta) platforms;
34   };