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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
646 B
Nix
Raw Normal View History

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