dune_2: 2.9.1 -> 2.9.2 (#156329)

https://github.com/ocaml/dune/releases/tag/2.9.2
This commit is contained in:
Mario Rodas 2022-01-25 04:53:20 -05:00 committed by GitHub
parent 5cbff8a564
commit f8ea1ec9ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -6,6 +6,8 @@ buildDunePackage rec {
useDune2 = true;
minimalOCamlVersion = "4.03";
src = fetchFromGitHub {
owner = "mirage";
repo = pname;

View File

@ -6,11 +6,11 @@ else
stdenv.mkDerivation rec {
pname = "dune";
version = "2.9.1";
version = "2.9.2";
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
sha256 = "09lzq04b642iy0ljp59p32lgk3q8iphjh8fkdp69q29l5frgwx5k";
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-site-${version}.tbz";
sha256 = "sha256-uOfMUH+5eLRfb9yDnysyAdLB5hHkqOlyyMjP2FIudEc=";
};
nativeBuildInputs = [ ocaml findlib ];

View File

@ -7,5 +7,7 @@ buildDunePackage {
inherit (js_of_ocaml-compiler) version src meta useDune2;
minimalOCamlVersion = "4.03";
propagatedBuildInputs = [ ocamlbuild ];
}