ocamlPackages.ocaml-version: 3.0.0 -> 3.1.0

This commit is contained in:
superherointj 2021-06-05 19:59:32 -03:00 committed by Vincent Laporte
parent 39f3777e92
commit 6d3d57a20d

View file

@ -1,24 +1,21 @@
{ lib, fetchurl, buildDunePackage }: { lib, fetchurl, buildDunePackage }:
buildDunePackage rec { buildDunePackage rec {
pname = "ocaml-version"; pname = "ocaml-version";
version = "3.0.0"; version = "3.1.0";
minimumOCamlVersion = "4.07";
useDune2 = true;
src = fetchurl { src = fetchurl {
url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz"; url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz";
sha256 = "15vk8sh50p3f2mbv8z7mqnx76cffri36f2krp25zkkwix8jg7ci4"; sha256 = "sha256-rHuhagnY9yISdC85NpgPv667aYx7v2JRgq99ayw83l8=";
}; };
meta = { minimumOCamlVersion = "4.07";
useDune2 = true;
meta = with lib; {
description = "Manipulate, parse and generate OCaml compiler version strings"; description = "Manipulate, parse and generate OCaml compiler version strings";
homepage = "https://github.com/ocurrent/ocaml-version"; homepage = "https://github.com/ocurrent/ocaml-version";
license = lib.licenses.isc; license = licenses.isc;
maintainers = [ lib.maintainers.vbgl ]; maintainers = with maintainers; [ vbgl ];
}; };
} }