diff --git a/pkgs/development/ocaml-modules/integers/default.nix b/pkgs/development/ocaml-modules/integers/default.nix index ed5ccbedb64..343aeb216ba 100644 --- a/pkgs/development/ocaml-modules/integers/default.nix +++ b/pkgs/development/ocaml-modules/integers/default.nix @@ -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;