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

31 lines
808 B
Nix
Raw Normal View History

2018-09-25 13:40:02 +00:00
{ stdenv, fetchurl, ocamlPackages, opaline }:
2018-02-22 04:06:07 +00:00
stdenv.mkDerivation rec {
2018-09-05 16:11:47 +00:00
name = "dune-${version}";
2018-12-13 13:48:16 +00:00
version = "1.6.2";
2018-09-25 13:40:02 +00:00
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
2018-12-13 13:48:16 +00:00
sha256 = "1k675mfywmsj4v4z2f5a4vqinl1jbzzb7v5k6rzyfgvxzd7gil40";
};
2018-05-28 06:12:33 +00:00
buildInputs = with ocamlPackages; [ ocaml findlib ];
2018-09-25 13:40:02 +00:00
buildFlags = "release";
2018-04-30 09:52:30 +00: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 13:40:02 +00:00
description = "A composable build system";
maintainers = [ stdenv.lib.maintainers.vbgl ];
2018-09-25 13:40:02 +00:00
license = stdenv.lib.licenses.mit;
2018-05-28 06:12:33 +00:00
inherit (ocamlPackages.ocaml.meta) platforms;
};
}