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

26 lines
669 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchurl, re, uutf }:
2016-12-04 11:23:03 +01: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;
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
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-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
}