depot/third_party/nixpkgs/pkgs/development/ocaml-modules/tyxml/default.nix
Default email 18bad4282a Project import generated by Copybara.
GitOrigin-RevId: 1c2986bbb806c57f9470bf3231d8da7250ab9091
2021-06-01 12:57:12 +02:00

25 lines
669 B
Nix

{ lib, buildDunePackage, fetchurl, re, uutf }:
buildDunePackage rec {
pname = "tyxml";
version = "4.5.0";
useDune2 = true;
src = fetchurl {
url = "https://github.com/ocsigen/tyxml/releases/download/${version}/tyxml-${version}.tbz";
sha256 = "0s30f72m457c3gbdmdwbx7ls9zg806nvm83aiz9qkpglbppwr6n6";
};
propagatedBuildInputs = [ uutf re ];
meta = with lib; {
homepage = "http://ocsigen.org/tyxml/";
description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing";
license = licenses.lgpl21;
maintainers = with maintainers; [
gal_bolle vbgl
];
};
}