55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ stdenv, fetchurl, ocaml, findlib, which, camlp4 }:
|
|
|
|
let inherit (stdenv.lib) getVersion versionAtLeast; in
|
|
|
|
assert versionAtLeast (getVersion ocaml) "4.00.0";
|
|
assert versionAtLeast (getVersion findlib) "1.3.3";
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bolt-1.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://forge.ocamlcore.org/frs/download.php/1043/${name}.tar.gz";
|
|
sha256 = "1c807wrpxra9sbb34lajhimwra28ldxv04m570567lh2b04n38zy";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib which camlp4 ];
|
|
|
|
patchPhase = ''
|
|
patch myocamlbuild.ml <<EOF
|
|
70,74c70
|
|
< let camlp4of =
|
|
< try
|
|
< let path_bin = Filename.concat (Sys.getenv "PATH_OCAML_PREFIX") "bin" in
|
|
< Filename.concat path_bin "camlp4of"
|
|
< with _ -> "camlp4of" in
|
|
---
|
|
> let camlp4of = "camlp4of" in
|
|
EOF
|
|
'';
|
|
|
|
# The custom `configure` script does not expect the --prefix
|
|
# option. Installation is handled by ocamlfind.
|
|
dontAddPrefix = true;
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
buildFlags = "all";
|
|
|
|
doCheck = true;
|
|
checkTarget = "tests";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://bolt.x9c.fr";
|
|
description = "A logging tool for the OCaml language";
|
|
longDescription = ''
|
|
Bolt is a logging tool for the OCaml language. It is inspired by and
|
|
modeled after the famous log4j logging framework for Java.
|
|
'';
|
|
license = licenses.lgpl3;
|
|
platforms = ocaml.meta.platforms or [];
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
};
|
|
}
|