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

32 lines
905 B
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, ocaml_oasis, camlp4, uutf, markup, ppx_tools, re }:
2014-06-08 03:12:27 -07:00
2016-05-30 06:55:30 -07:00
stdenv.mkDerivation rec {
pname = "tyxml";
version = "3.6.0";
name = "${pname}-${version}";
2014-06-08 03:12:27 -07:00
src = fetchurl {
2016-05-30 06:55:30 -07:00
url = "http://github.com/ocsigen/tyxml/archive/${version}.tar.gz";
sha256 = "1rz0f48x8p1m30723rn5v85pp7rd0spr04sd7gzryy99vn3ianga";
2014-06-08 03:12:27 -07:00
};
buildInputs = [ ocaml findlib ocamlbuild camlp4 ];
2016-05-30 06:55:30 -07:00
propagatedBuildInputs = [uutf re ppx_tools markup];
2014-06-08 03:12:27 -07:00
createFindlibDestdir = true;
2016-05-30 06:55:30 -07:00
configureFlags = "--enable-syntax";
2014-09-29 21:25:31 -07:00
meta = with stdenv.lib; {
2014-06-08 03:12:27 -07:00
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;
platforms = ocaml.meta.platforms or [];
2014-09-29 21:25:31 -07:00
maintainers = with maintainers; [
gal_bolle vbgl
2014-06-08 03:12:27 -07:00
];
};
2014-09-06 01:44:20 -07:00
}