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

31 lines
808 B
Nix
Raw Normal View History

2018-09-25 14:40:02 +01:00
{ stdenv, fetchurl, ocamlPackages, opaline }:
2018-02-22 04:06:07 +00:00
stdenv.mkDerivation rec {
2018-09-05 17:11:47 +01:00
name = "dune-${version}";
2019-03-11 13:36:13 +00:00
version = "1.8.2";
2018-09-25 14:40:02 +01:00
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
2019-03-11 13:36:13 +00:00
sha256 = "1lbgnmzdgb3cp2k2wfhhm5zwlm6dbipab49lh308y2qmh1q6yk6a";
};
2018-05-28 07:12:33 +01:00
buildInputs = with ocamlPackages; [ ocaml findlib ];
2018-09-25 14:40:02 +01:00
buildFlags = "release";
2018-04-30 10:52:30 +01:00
dontAddPrefix = true;
installPhase = ''
runHook preInstall
${opaline}/bin/opaline -prefix $out -libdir $OCAMLFIND_DESTDIR
runHook postInstall
'';
meta = {
homepage = https://github.com/ocaml/dune;
2018-09-25 14:40:02 +01:00
description = "A composable build system";
maintainers = [ stdenv.lib.maintainers.vbgl ];
2018-09-25 14:40:02 +01:00
license = stdenv.lib.licenses.mit;
2018-05-28 07:12:33 +01:00
inherit (ocamlPackages.ocaml.meta) platforms;
};
}