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

32 lines
880 B
Nix
Raw Normal View History

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