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