From 722c01a9e8ae04451c9c5892b6726af684537728 Mon Sep 17 00:00:00 2001 From: freezeboy Date: Sun, 27 Dec 2020 20:51:18 +0100 Subject: [PATCH] ocamlPackages.camlzip: 1.07 -> 1.10 --- .../ocaml-modules/camlzip/default.nix | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index 7de8968e0610..1e6e0e8f8faa 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -4,30 +4,36 @@ let param = if stdenv.lib.versionAtLeast ocaml.version "4.02" then { - version = "1.07"; - url = "https://github.com/xavierleroy/camlzip/archive/rel107.tar.gz"; - sha256 = "1pdz3zyiczm6c46zfgag2frwq3ljlq044p3a2y4wm2wb4pgz8k9g"; + version = "1.10"; + url = "https://github.com/xavierleroy/camlzip/archive/rel110.tar.gz"; + sha256 = "X0YcczaQ3lFeJEiTIgjSSZ1zi32KFMtmZsP0FFpyfbI="; patches = []; - installTargets = [ "install-findlib" ]; + postPatchInit = '' + cp META-zip META-camlzip + echo 'directory="../zip"' >> META-camlzip + ''; } else { version = "1.05"; download_id = "1037"; url = "http://forge.ocamlcore.org/frs/download.php/${param.download_id}/camlzip-${param.version}.tar.gz"; sha256 = "930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b"; patches = [./makefile_1_05.patch]; - installTargets = [ "install" ]; + postPatchInit = '' + substitute ${./META} META --subst-var-by VERSION "${param.version}" + ''; }; in stdenv.mkDerivation { - name = "camlzip-${param.version}"; + pname = "camlzip"; + version = param.version; src = fetchurl { inherit (param) url; inherit (param) sha256; }; - buildInputs = [ocaml findlib]; + buildInputs = [ ocaml findlib ]; propagatedBuildInputs = [zlib]; @@ -35,8 +41,7 @@ stdenv.mkDerivation { createFindlibDestdir = true; - postPatch = '' - substitute ${./META} META --subst-var-by VERSION "${param.version}" + postPatch = param.postPatchInit + '' substituteInPlace Makefile \ --subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \ --subst-var-by ZLIB_INCLUDE "${zlib.dev}/include" @@ -44,13 +49,11 @@ stdenv.mkDerivation { buildFlags = [ "all" "allopt" ]; - inherit (param) installTargets; - postInstall = '' 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"; description = "A library for handling ZIP and GZIP files in OCaml"; longDescription = '' @@ -60,8 +63,6 @@ stdenv.mkDerivation { ''; license = "LGPL+linking exceptions"; platforms = ocaml.meta.platforms or []; - maintainers = [ - stdenv.lib.maintainers.maggesi - ]; + maintainers = with maintainers; [ maggesi ]; }; }