summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/camlzip/default.nix
blob: d0bc2f5a37569841cd0903f661558f12ffdfeb97 (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
{stdenv, fetchurl, zlib, ocaml, findlib}:

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";
      patches = [];
      installTargets = "install-findlib";
    } 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";
    };
in

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

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

  buildInputs = [ocaml findlib];

  propagatedBuildInputs = [zlib];

  inherit (param) patches;

  createFindlibDestdir = true;

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

  buildFlags = "all allopt";

  inherit (param) installTargets;

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

  meta = {
    homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip";
    description = "A 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";
    platforms = ocaml.meta.platforms or [];
    maintainers = [
      stdenv.lib.maintainers.maggesi
    ];
  };
}