32 lines
837 B
Nix
32 lines
837 B
Nix
{ stdenv, fetchurl, ocaml, findlib }:
|
|
|
|
if stdenv.lib.versionOlder ocaml.version "4.07"
|
|
then throw "dune is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dune";
|
|
version = "2.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
|
|
sha256 = "0z5anyyfiydpk4l45p64k2ravypawnlllixq0h5ir450dw0ifi5i";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ];
|
|
|
|
buildFlags = "release";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" "LIBDIR=$(OCAMLFIND_DESTDIR)" ];
|
|
|
|
meta = {
|
|
homepage = "https://dune.build/";
|
|
description = "A composable build system";
|
|
maintainers = [ stdenv.lib.maintainers.vbgl stdenv.lib.maintainers.marsam ];
|
|
license = stdenv.lib.licenses.mit;
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|