From c9fe0f83fa55ba55ac6a8d939a035c6e4ad85d1f Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 22 Nov 2022 04:50:35 +0100 Subject: [PATCH] =?UTF-8?q?ocamlPackages.integers:=200.5.1=20=E2=86=92=200?= =?UTF-8?q?.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/integers/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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;