512fbb280f
(cherry picked from commit 91c7e8747af1fdc2a70cd98594ccbb12a5c6902d) Signed-off-by: Domen Kožar <domen@dev.si>
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{stdenv, fetchurl, which, perl, ocaml, findlib, javalib, camlp4 }:
|
|
|
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
|
|
|
|
let
|
|
pname = "sawja";
|
|
version = "1.5";
|
|
webpage = "http://sawja.inria.fr/";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml-${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://gforge.inria.fr/frs/download.php/33091/${pname}-${version}.tar.bz2";
|
|
sha256 = "0i8qgqkw9vgj6k2g6npss268ivxdkzx5qj2a52jbd8ih59rn68cm";
|
|
};
|
|
|
|
buildInputs = [ which perl ocaml findlib camlp4 ];
|
|
|
|
patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
configureScript = "./configure.sh";
|
|
dontAddPrefix = "true";
|
|
|
|
propagatedBuildInputs = [ javalib ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library written in OCaml, relying on Javalib to provide a high level representation of Java bytecode programs";
|
|
homepage = "${webpage}";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.vbgl ];
|
|
platforms = ocaml.meta.platforms;
|
|
};
|
|
}
|