nixpkgs/pkgs/development/tools/ocaml/dune/default.nix

31 lines
758 B
Nix
Raw Normal View History

2019-03-20 03:28:28 -07:00
{ stdenv, fetchurl, ocaml, findlib, opaline }:
2018-02-21 20:06:07 -08:00
stdenv.mkDerivation rec {
pname = "dune";
version = "1.10.0";
2018-09-25 06:40:02 -07:00
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
sha256 = "15fx9rg16g7ig43rg4sdq0wp0br5h1mjxxgv8b15s317vqlfc5pd";
};
2019-03-20 03:28:28 -07:00
buildInputs = [ ocaml findlib ];
2018-09-25 06:40:02 -07:00
buildFlags = "release";
2018-04-30 02:52:30 -07:00
dontAddPrefix = true;
installPhase = ''
runHook preInstall
${opaline}/bin/opaline -prefix $out -libdir $OCAMLFIND_DESTDIR
runHook postInstall
'';
meta = {
homepage = "https://dune.build/";
2018-09-25 06:40:02 -07:00
description = "A composable build system";
maintainers = [ stdenv.lib.maintainers.vbgl ];
2018-09-25 06:40:02 -07:00
license = stdenv.lib.licenses.mit;
2019-03-20 03:28:28 -07:00
inherit (ocaml.meta) platforms;
};
}