nixpkgs/pkgs/development/ocaml-modules/tyxml/default.nix

26 lines
671 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchurl, re, uutf }:
2016-12-04 02:23:03 -08:00
buildDunePackage rec {
2016-05-30 06:55:30 -07:00
pname = "tyxml";
version = "4.4.0";
2014-06-08 03:12:27 -07:00
2021-02-13 00:36:10 -08:00
useDune2 = true;
src = fetchurl {
url = "https://github.com/ocsigen/tyxml/releases/download/${version}/tyxml-${version}.tbz";
sha256 = "0c150h2f4c4id73ickkdqkir3jya66m6c7f5jxlp4caw9bfr8qsi";
2016-12-04 02:23:03 -08:00
};
2018-02-01 12:59:53 -08:00
propagatedBuildInputs = [ uutf re ];
2014-06-08 03:12:27 -07:00
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";
2014-09-29 21:25:31 -07:00
license = licenses.lgpl21;
maintainers = with maintainers; [
gal_bolle vbgl
2014-06-08 03:12:27 -07:00
];
};
2014-09-06 01:44:20 -07:00
}