ocamlPackages.utop: 2.8.0 → 2.9.0

This commit is contained in:
Vincent Laporte 2022-03-06 16:02:00 +01:00 committed by Vincent Laporte
parent f2bdaba3fd
commit 0b29a7d688

View file

@ -2,19 +2,17 @@
, lambda-term, cppo, makeWrapper, buildDunePackage
}:
if !lib.versionAtLeast ocaml.version "4.03"
then throw "utop is not available for OCaml ${ocaml.version}"
else
buildDunePackage rec {
pname = "utop";
version = "2.8.0";
version = "2.9.0";
useDune2 = true;
minimalOCamlVersion = "4.03";
src = fetchurl {
url = "https://github.com/ocaml-community/utop/releases/download/${version}/utop-${version}.tbz";
sha256 = "0mi571ifjzq4wcjarn8q1b7yl8nxjm1jfx3afac224lqwn6bhb2d";
sha256 = "sha256:17jd61bc6pva5wqmnc9xq70ysyjplrzf1p25sq1s7wgrfq2vlyyd";
};
nativeBuildInputs = [ makeWrapper cppo ];