2019-04-19 15:14:47 +01:00
|
|
|
{ lib, buildDunePackage, fetchurl, re, uutf }:
|
2016-12-04 10:23:03 +00:00
|
|
|
|
2019-04-19 15:14:47 +01:00
|
|
|
buildDunePackage rec {
|
2016-05-30 14:55:30 +01:00
|
|
|
pname = "tyxml";
|
2019-04-19 15:14:47 +01:00
|
|
|
version = "4.3.0";
|
2014-06-08 11:12:27 +01:00
|
|
|
|
2019-04-19 15:14:47 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocsigen/tyxml/releases/download/${version}/tyxml-${version}.tbz";
|
|
|
|
sha256 = "1hxzppfvsdls2y8qiwvz31hmffzh2hgglf01am1vzf2f31mxf6vf";
|
2016-12-04 10:23:03 +00:00
|
|
|
};
|
|
|
|
|
2018-02-01 20:59:53 +00:00
|
|
|
propagatedBuildInputs = [ uutf re ];
|
2014-06-08 11:12:27 +01:00
|
|
|
|
2019-04-19 15:14:47 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://ocsigen.org/tyxml/";
|
2014-12-30 02:31:03 +00:00
|
|
|
description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing";
|
2014-09-30 05:25:31 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [
|
|
|
|
gal_bolle vbgl
|
2014-06-08 11:12:27 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2014-09-06 09:44:20 +01:00
|
|
|
}
|