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 {
pname = "integers";
version = "0.5.1";
useDune2 = lib.versionAtLeast ocaml.version "4.08";
version = "0.7.0";
src = fetchFromGitHub {
owner = "ocamllabs";
repo = "ocaml-integers";
rev = version;
sha256 = "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi";
sha256 = "sha256-zuUgP1jOiVT0q6GisGpkqx7nybWbARgnAcU8NYqvCzA=";
};
propagatedBuildInputs = [ stdlib-shims ];
meta = {
description = "Various signed and unsigned integer types for OCaml";
license = lib.licenses.mit;