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

27 lines
753 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}";
version = "1.4.0";
2018-09-25 13:40:02 +00:00
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
sha256 = "1fz1jx1d48yb40qan4hw25h8ia55vs7mp94a3rr7cf5gb5ap2zkj";
};
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;
2018-05-28 06:12:33 +00:00
installPhase = "${opaline}/bin/opaline -prefix $out -libdir $OCAMLFIND_DESTDIR";
meta = {
2018-09-25 13:40:02 +00:00
homepage = "https://github.com/ocaml/dune";
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;
};
}