2021-01-23 04:26:19 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ncurses, cmdliner, re }:
|
2016-04-25 02:40:22 -07:00
|
|
|
let
|
2020-10-23 12:23:38 -07:00
|
|
|
version = "1.99.21";
|
2016-04-25 02:40:22 -07:00
|
|
|
in
|
2019-08-13 14:52:01 -07:00
|
|
|
stdenv.mkDerivation {
|
2016-07-22 00:46:40 -07:00
|
|
|
|
2020-10-23 12:23:38 -07:00
|
|
|
name = "ocaml${ocaml.version}-ocp-build-${version}-beta";
|
2014-10-28 10:05:53 -07:00
|
|
|
|
2016-07-22 00:46:40 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OCamlPro";
|
|
|
|
repo = "ocp-build";
|
2020-10-23 12:23:38 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1641xzik98c7xnjwxpacijd6d9jzx340fmdn6i372z8h554jjlg9";
|
2014-10-28 10:05:53 -07:00
|
|
|
};
|
|
|
|
|
2020-10-23 12:23:38 -07:00
|
|
|
buildInputs = [ ocaml findlib cmdliner re ];
|
2016-04-25 02:40:22 -07:00
|
|
|
propagatedBuildInputs = [ ncurses ];
|
2015-06-14 13:22:46 -07:00
|
|
|
preInstall = "mkdir -p $out/bin";
|
2016-04-25 02:40:22 -07:00
|
|
|
preConfigure = ''
|
|
|
|
export configureFlags="$configureFlags --with-metadir=$OCAMLFIND_DESTDIR"
|
|
|
|
'';
|
2014-10-28 10:05:53 -07:00
|
|
|
|
2021-01-23 04:26:19 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.typerex.org/ocp-build.html";
|
2014-10-28 10:05:53 -07:00
|
|
|
description = "A build tool for OCaml";
|
|
|
|
longDescription = ''
|
|
|
|
ocp-build is a build system for OCaml application, based on simple
|
|
|
|
descriptions of packages. ocp-build combines the descriptions of
|
|
|
|
packages, and optimize the parallel compilation of files depending on
|
2014-12-29 18:31:03 -08:00
|
|
|
the number of cores and the automatically-inferred dependencies
|
2014-10-28 10:05:53 -07:00
|
|
|
between source files.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
2015-12-24 09:49:07 -08:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-10-28 10:05:53 -07:00
|
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
|
|
};
|
|
|
|
}
|