2017-10-14 08:31:55 +02:00
|
|
|
{ stdenv, fetchFromGitHub, ocaml, findlib }:
|
2016-07-13 14:56:05 +02:00
|
|
|
let
|
2018-10-25 09:40:39 +02:00
|
|
|
version = "0.12.0";
|
2016-07-13 14:56:05 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2016-12-04 12:25:37 +01:00
|
|
|
name = "ocamlbuild-${version}";
|
2016-07-13 14:56:05 +02:00
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ocaml";
|
|
|
|
repo = "ocamlbuild";
|
|
|
|
rev = version;
|
2018-10-25 09:40:39 +02:00
|
|
|
sha256 = "1shyim50ms0816fphc4mk0kldcx3pnba2i6m10q0cbm18m9d7chq";
|
2016-07-13 14:56:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
|
|
|
buildInputs = [ ocaml findlib ];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
make -f configure.make Makefile.config \
|
|
|
|
"OCAMLBUILD_PREFIX=$out" \
|
|
|
|
"OCAMLBUILD_BINDIR=$out/bin" \
|
2017-03-21 19:13:32 +01:00
|
|
|
"OCAMLBUILD_MANDIR=$out/share/man" \
|
2016-07-13 14:56:05 +02:00
|
|
|
"OCAMLBUILD_LIBDIR=$OCAMLFIND_DESTDIR"
|
|
|
|
'';
|
|
|
|
|
2016-12-04 12:25:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/ocaml/ocamlbuild/;
|
|
|
|
description = "A build system with builtin rules to easily build most OCaml projects";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
inherit (ocaml.meta) platforms;
|
|
|
|
maintainers = with maintainers; [ vbgl ];
|
|
|
|
};
|
2016-07-13 14:56:05 +02:00
|
|
|
}
|