ocamlPackages.camlzip: 1.07 -> 1.10

This commit is contained in:
freezeboy 2020-12-27 20:51:18 +01:00 committed by Vincent Laporte
parent 1aa915c09d
commit 722c01a9e8

View File

@ -4,30 +4,36 @@ let
param = param =
if stdenv.lib.versionAtLeast ocaml.version "4.02" if stdenv.lib.versionAtLeast ocaml.version "4.02"
then { then {
version = "1.07"; version = "1.10";
url = "https://github.com/xavierleroy/camlzip/archive/rel107.tar.gz"; url = "https://github.com/xavierleroy/camlzip/archive/rel110.tar.gz";
sha256 = "1pdz3zyiczm6c46zfgag2frwq3ljlq044p3a2y4wm2wb4pgz8k9g"; sha256 = "X0YcczaQ3lFeJEiTIgjSSZ1zi32KFMtmZsP0FFpyfbI=";
patches = []; patches = [];
installTargets = [ "install-findlib" ]; postPatchInit = ''
cp META-zip META-camlzip
echo 'directory="../zip"' >> META-camlzip
'';
} else { } else {
version = "1.05"; version = "1.05";
download_id = "1037"; download_id = "1037";
url = "http://forge.ocamlcore.org/frs/download.php/${param.download_id}/camlzip-${param.version}.tar.gz"; url = "http://forge.ocamlcore.org/frs/download.php/${param.download_id}/camlzip-${param.version}.tar.gz";
sha256 = "930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b"; sha256 = "930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b";
patches = [./makefile_1_05.patch]; patches = [./makefile_1_05.patch];
installTargets = [ "install" ]; postPatchInit = ''
substitute ${./META} META --subst-var-by VERSION "${param.version}"
'';
}; };
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "camlzip-${param.version}"; pname = "camlzip";
version = param.version;
src = fetchurl { src = fetchurl {
inherit (param) url; inherit (param) url;
inherit (param) sha256; inherit (param) sha256;
}; };
buildInputs = [ocaml findlib]; buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [zlib]; propagatedBuildInputs = [zlib];
@ -35,8 +41,7 @@ stdenv.mkDerivation {
createFindlibDestdir = true; createFindlibDestdir = true;
postPatch = '' postPatch = param.postPatchInit + ''
substitute ${./META} META --subst-var-by VERSION "${param.version}"
substituteInPlace Makefile \ substituteInPlace Makefile \
--subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \ --subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \
--subst-var-by ZLIB_INCLUDE "${zlib.dev}/include" --subst-var-by ZLIB_INCLUDE "${zlib.dev}/include"
@ -44,13 +49,11 @@ stdenv.mkDerivation {
buildFlags = [ "all" "allopt" ]; buildFlags = [ "all" "allopt" ];
inherit (param) installTargets;
postInstall = '' postInstall = ''
ln -s $out/lib/ocaml/${ocaml.version}/site-lib/{,caml}zip ln -s $out/lib/ocaml/${ocaml.version}/site-lib/{,caml}zip
''; '';
meta = { meta = with stdenv.lib; {
homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip"; homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip";
description = "A library for handling ZIP and GZIP files in OCaml"; description = "A library for handling ZIP and GZIP files in OCaml";
longDescription = '' longDescription = ''
@ -60,8 +63,6 @@ stdenv.mkDerivation {
''; '';
license = "LGPL+linking exceptions"; license = "LGPL+linking exceptions";
platforms = ocaml.meta.platforms or []; platforms = ocaml.meta.platforms or [];
maintainers = [ maintainers = with maintainers; [ maggesi ];
stdenv.lib.maintainers.maggesi
];
}; };
} }