ocaml-tyxml: update 3.0.0 -> 3.1.1

This commit is contained in:
Vincent Laporte 2014-09-30 06:25:31 +02:00
parent e9304fe039
commit 7adab7e25e

View File

@ -1,29 +1,24 @@
{stdenv, fetchurl, ocaml, findlib, ocaml_oasis}: {stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "tyxml-3.0.0"; name = "tyxml-3.1.1";
src = fetchurl { src = fetchurl {
url = http://ocsigen.org/download/tyxml-3.0.0.tar.gz; url = http://github.com/ocsigen/tyxml/archive/3.1.1.tar.gz;
sha256 = "0cvbmyg4g0lg4f23032cjlxqklisccbjgj47117wm6gva8xi7xa3"; sha256 = "1r8im382r68kn8qy0857nv3y7h42i6ajyclxzmigfai7v2xdd05z";
}; };
buildInputs = [ocaml findlib ocaml_oasis]; buildInputs = [ocaml findlib ocaml_oasis camlp4];
createFindlibDestdir = true; createFindlibDestdir = true;
configurePhase = '' meta = with stdenv.lib; {
make setup-dev.exe
./setup-dev.exe -configure --prefix $out
'';
meta = {
homepage = http://ocsigen.org/tyxml/; 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"; 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; platforms = ocaml.meta.platforms;
maintainers = [ maintainers = with maintainers; [
stdenv.lib.maintainers.gal_bolle gal_bolle vbgl
]; ];
}; };