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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

2021-10-13 04:42:47 +00:00
{ lib, stdenv, fetchFromGitHub, which, ocaml, findlib, javalib }:
let
pname = "sawja";
2023-01-27 06:23:50 +00:00
version = "1.5.12";
in
2023-01-27 06:23:50 +00:00
lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
"${pname} is not available for OCaml ${ocaml.version}"
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2021-10-13 04:42:47 +00:00
pname = "ocaml${ocaml.version}-${pname}";
inherit version;
src = fetchFromGitHub {
owner = "javalib-team";
repo = pname;
2021-10-13 04:42:47 +00:00
rev = version;
2023-01-27 06:23:50 +00:00
hash = "sha256-G1W8/G0TEcldnFnH/NAb9a6ZSGGP2fWTM47lI8bBHnw=";
};
nativeBuildInputs = [ which ocaml findlib ];
2021-10-13 04:42:47 +00:00
strictDeps = true;
patches = [ ./configure.sh.patch ./Makefile.config.example.patch ];
createFindlibDestdir = true;
configureScript = "./configure.sh";
dontAddPrefix = "true";
dontAddStaticConfigureFlags = true;
configurePlatforms = [];
propagatedBuildInputs = [ javalib ];
meta = with lib; {
description = "Library written in OCaml, relying on Javalib to provide a high level representation of Java bytecode programs";
2022-03-24 17:41:07 +00:00
homepage = "http://sawja.inria.fr/";
license = licenses.gpl3Plus;
maintainers = [ maintainers.vbgl ];
inherit (ocaml.meta) platforms;
};
}