ocamlPackages.ocaml-version: 3.4.0 → 3.6.1

This commit is contained in:
Vincent Laporte 2023-03-29 06:32:02 +02:00
parent 08eb326add
commit 1a10e9255b
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -2,19 +2,19 @@
buildDunePackage rec {
pname = "ocaml-version";
version = "3.4.0";
version = "3.6.1";
src = fetchurl {
url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz";
sha256 = "sha256-2MG+tejY67dxC19DTOZqPsi3UrHk1rqHxP4nRSvbiiU=";
url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-${version}.tbz";
hash = "sha256-AKCaXUehJ3V8uET1tUDDbIzI8lZv5aygxhIbR21xnTI=";
};
checkInputs = [ alcotest ];
doCheck = true;
minimumOCamlVersion = "4.07";
useDune2 = true;
minimalOCamlVersion = "4.07";
duneVersion = "3";
meta = with lib; {
description = "Manipulate, parse and generate OCaml compiler version strings";