nixpkgs/pkgs/development/ocaml-modules/tyxml/default.nix
Vincent Laporte 9ec8205e78 ocamlPackages.tyxml: 4.3.0 → 4.4.0
ocamlPackages.eliom: 6.10.1 → 6.12.0
2020-05-14 18:12:36 +02:00

24 lines
651 B
Nix

{ lib, buildDunePackage, fetchurl, re, uutf }:
buildDunePackage rec {
pname = "tyxml";
version = "4.4.0";
src = fetchurl {
url = "https://github.com/ocsigen/tyxml/releases/download/${version}/tyxml-${version}.tbz";
sha256 = "0c150h2f4c4id73ickkdqkir3jya66m6c7f5jxlp4caw9bfr8qsi";
};
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
];
};
}