summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/javalib/default.nix
blob: 2fa72dcf07f14a90020de296c07dad03dbce1313 (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
{stdenv, fetchurl, which, ocaml, findlib, camlzip, extlib}:
let
  pname = "javalib";
  version = "2.3";
  webpage = "http://sawja.inria.fr/";
  ocaml_version = (builtins.parseDrvName ocaml.name).version;
in
stdenv.mkDerivation rec {

  name = "ocaml-${pname}-${version}";

  src = fetchurl {
    url = "https://gforge.inria.fr/frs/download.php/33090/${pname}-${version}.tar.bz2";
    sha256 = "1i8djcanzm250mwilm3jfy37cz0k0x7jbnrz8a5vvdi91kyzh52j";
  };

  buildInputs = [ which ocaml findlib camlzip extlib ];

  patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];

  createFindlibDestdir = true;

  configureScript = "./configure.sh";
  dontAddPrefix = "true";

  preBuild = ''
    make ptrees;
    make installptrees;
    export OCAMLPATH=$out/lib/ocaml/${ocaml_version}/site-lib/:$OCAMLPATH;
  '';

  propagatedBuildInputs = [ camlzip extlib ];

  meta = {
    description = "A library that parses Java .class files into OCaml data structures";
    homepage = "${webpage}";
    license = stdenv.lib.licenses.lgpl3;
    platforms = ocaml.meta.platforms;
  };
}