ocaml-tyxml: update 3.0.0 -> 3.1.1

wip/yesman
Vincent Laporte 10 years ago
parent e9304fe039
commit 7adab7e25e
  1. 23
      pkgs/development/ocaml-modules/tyxml/default.nix

@ -1,29 +1,24 @@
{stdenv, fetchurl, ocaml, findlib, ocaml_oasis}:
{stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4}:
stdenv.mkDerivation {
name = "tyxml-3.0.0";
name = "tyxml-3.1.1";
src = fetchurl {
url = http://ocsigen.org/download/tyxml-3.0.0.tar.gz;
sha256 = "0cvbmyg4g0lg4f23032cjlxqklisccbjgj47117wm6gva8xi7xa3";
url = http://github.com/ocsigen/tyxml/archive/3.1.1.tar.gz;
sha256 = "1r8im382r68kn8qy0857nv3y7h42i6ajyclxzmigfai7v2xdd05z";
};
buildInputs = [ocaml findlib ocaml_oasis];
buildInputs = [ocaml findlib ocaml_oasis camlp4];
createFindlibDestdir = true;
configurePhase = ''
make setup-dev.exe
./setup-dev.exe -configure --prefix $out
'';
meta = {
meta = with stdenv.lib; {
homepage = http://ocsigen.org/tyxml/;
description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML ouput, using static typing";
license = "LGPL";
license = licenses.lgpl21;
platforms = ocaml.meta.platforms;
maintainers = [
stdenv.lib.maintainers.gal_bolle
maintainers = with maintainers; [
gal_bolle vbgl
];
};

Loading…
Cancel
Save