nixpkgs/pkgs/development/ocaml-modules/javalib/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, which, ocaml, findlib
2019-08-20 04:45:46 +00:00
, camlzip, extlib
}:
2016-10-05 07:32:30 +00:00
if !lib.versionAtLeast ocaml.version "4.04"
2019-08-20 04:45:46 +00:00
then throw "javalib is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
2019-08-20 04:45:46 +00:00
name = "ocaml${ocaml.version}-javalib-${version}";
version = "3.2.1";
src = fetchzip {
url = "https://github.com/javalib-team/javalib/archive/v${version}.tar.gz";
sha256 = "1fkdaiiza145yv0r1cm0n2hsrr0rbn6b27vs66njgv405zwn3vbn";
};
2019-08-20 04:45:46 +00:00
buildInputs = [ which ocaml findlib ];
patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];
createFindlibDestdir = true;
preConfigure = "patchShebangs ./configure.sh";
configureScript = "./configure.sh";
dontAddPrefix = "true";
2019-08-20 04:45:46 +00:00
propagatedBuildInputs = [ camlzip extlib ];
meta = with lib; {
description = "A library that parses Java .class files into OCaml data structures";
homepage = "https://javalib-team.github.io/javalib/";
license = licenses.lgpl3;
maintainers = [ maintainers.vbgl ];
2019-08-20 04:45:46 +00:00
inherit (ocaml.meta) platforms;
};
}