ocamlPackages.integers: 0.5.1 → 0.7.0

This commit is contained in:
Vincent Laporte 2022-11-22 04:50:35 +01:00 committed by Vincent Laporte
parent 5adec5a79d
commit c9fe0f83fa

View file

@ -1,18 +1,20 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml }: { lib, fetchFromGitHub, buildDunePackage
, stdlib-shims
}:
buildDunePackage rec { buildDunePackage rec {
pname = "integers"; pname = "integers";
version = "0.5.1"; version = "0.7.0";
useDune2 = lib.versionAtLeast ocaml.version "4.08";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ocamllabs"; owner = "ocamllabs";
repo = "ocaml-integers"; repo = "ocaml-integers";
rev = version; rev = version;
sha256 = "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi"; sha256 = "sha256-zuUgP1jOiVT0q6GisGpkqx7nybWbARgnAcU8NYqvCzA=";
}; };
propagatedBuildInputs = [ stdlib-shims ];
meta = { meta = {
description = "Various signed and unsigned integer types for OCaml"; description = "Various signed and unsigned integer types for OCaml";
license = lib.licenses.mit; license = lib.licenses.mit;