about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/camlzip/default.nix
blob: 3b038f4dfec3ab0714cd30cba4f369cc451baedd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{lib, stdenv, fetchurl, zlib, ocaml, findlib}:

let
  common = {
      patches = [];
      postPatchInit = ''
        cp META-zip META-camlzip
        echo 'directory="../zip"' >> META-camlzip
      '';
  };
  param =
    if lib.versionAtLeast ocaml.version "4.07"
    then common // {
      version = "1.11";
      url = "https://github.com/xavierleroy/camlzip/archive/rel111.tar.gz";
      sha256 = "sha256-/7vF3j4cE9wOWScjdtIy0u3pGzJ1UQY9R/3bdPHV7Tc=";
    } else if lib.versionAtLeast ocaml.version "4.02"
    then common // {
      version = "1.10";
      url = "https://github.com/xavierleroy/camlzip/archive/rel110.tar.gz";
      sha256 = "X0YcczaQ3lFeJEiTIgjSSZ1zi32KFMtmZsP0FFpyfbI=";
    } 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];
      postPatchInit = ''
        substitute ${./META} META --subst-var-by VERSION "${param.version}"
      '';
    };
in

stdenv.mkDerivation {
  pname = "ocaml${ocaml.version}-camlzip";
  version = param.version;

  src = fetchurl {
    inherit (param) url;
    inherit (param) sha256;
  };

  nativeBuildInputs = [ ocaml findlib ];

  propagatedBuildInputs = [zlib];

  strictDeps = true;

  inherit (param) patches;

  createFindlibDestdir = true;

  postPatch = param.postPatchInit + ''
    substituteInPlace Makefile \
      --subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \
      --subst-var-by ZLIB_INCLUDE "${zlib.dev}/include"
  '';

  buildFlags = [ "all" "allopt" ];

  postInstall = ''
    ln -s $out/lib/ocaml/${ocaml.version}/site-lib/{,caml}zip
  '';

  meta = with lib; {
    homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip";
    description = "Library for handling ZIP and GZIP files in OCaml";
    longDescription = ''
      This Objective Caml library provides easy access to compressed files in
      ZIP and GZIP format, as well as to Java JAR files.  It provides functions
      for reading from and writing to compressed files in these formats.
    '';
    license = "LGPL+linking exceptions";
    inherit (ocaml.meta) platforms;
    maintainers = with maintainers; [ maggesi ];
  };
}