biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / ocaml / ocp-build / default.nix
blob33f9a123b744befd1e3871c7d4defc4f2e14593d
1 { lib, stdenv, fetchFromGitHub, fetchpatch, ocaml, findlib, ncurses, cmdliner_1_0, re }:
3 lib.throwIf (lib.versionAtLeast ocaml.version "5.0")
4   "ocp-build is not available for OCaml ${ocaml.version}"
6 stdenv.mkDerivation rec {
7   pname = "ocaml${ocaml.version}-ocp-build";
8   version = "1.99.21";
10   src = fetchFromGitHub {
11     owner = "OCamlPro";
12     repo = "ocp-build";
13     rev = "v${version}";
14     sha256 = "1641xzik98c7xnjwxpacijd6d9jzx340fmdn6i372z8h554jjlg9";
15   };
17   patches = [
18     # Fix compilation with OCaml 4.12
19     (fetchpatch {
20       url = "https://github.com/OCamlPro/ocp-build/commit/104e4656ca6dba9edb03b62539c9f1e10abcaae8.patch";
21       sha256 = "0sbyi4acig9q8x1ky4hckfg5pm2nad6zasi51ravaf1spgl148c2";
22     })
23   ];
25   strictDeps = true;
27   nativeBuildInputs = [ ocaml findlib ];
28   buildInputs =  [ cmdliner_1_0 re ];
29   propagatedBuildInputs = [ ncurses ];
30   preInstall = "mkdir -p $out/bin";
32   meta = with lib; {
33     description = "A build tool for OCaml";
34     longDescription = ''
35       ocp-build is a build system for OCaml application, based on simple
36       descriptions of packages. ocp-build combines the descriptions of
37       packages, and optimize the parallel compilation of files depending on
38       the number of cores and the automatically-inferred dependencies
39       between source files.
40     '';
41     homepage = "https://www.typerex.org/ocp-build.html";
42     license = licenses.gpl3;
43     maintainers = [ maintainers.jirkamarsik ];
44     mainProgram = "ocp-build";
45     inherit (ocaml.meta) platforms;
46   };