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

38 lines
1,011 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, ocaml, findlib, ncurses }:
if !lib.versionAtLeast ocaml.version "4.02"
|| lib.versionAtLeast ocaml.version "4.12"
then throw "dune 1 is not available for OCaml ${ocaml.version}"
2019-07-23 21:26:00 +02:00
else
2018-02-22 05:06:07 +01:00
stdenv.mkDerivation rec {
pname = "dune";
version = "1.11.4";
2018-09-25 15:40:02 +02:00
src = fetchurl {
2019-07-20 04:29:24 +02:00
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-build-info-${version}.tbz";
sha256 = "1rkc8lqw30ifjaz8d81la6i8j05ffd0whpxqsbg6dci16945zjvp";
};
nativeBuildInputs = [ ocaml findlib ];
buildInputs = [ ncurses ];
strictDeps = true;
buildFlags = [ "release" ];
2021-01-08 17:25:54 +01:00
makeFlags = [
"PREFIX=${placeholder "out"}"
"LIBDIR=$(OCAMLFIND_DESTDIR)"
];
2018-09-25 15:40:02 +02:00
2018-04-30 11:52:30 +02:00
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
configurePlatforms = [];
2018-04-30 11:52:30 +02:00
meta = with lib; {
homepage = "https://dune.build/";
2018-09-25 15:40:02 +02:00
description = "A composable build system";
maintainers = [ maintainers.vbgl maintainers.marsam ];
license = licenses.mit;
2019-03-20 11:28:28 +01:00
inherit (ocaml.meta) platforms;
};
}