mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
ocaml-tyxml: update 3.0.0 -> 3.1.1
This commit is contained in:
parent
e9304fe039
commit
7adab7e25e
@ -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…
Reference in New Issue
Block a user