From ec0134632ceca175a3a9c1e2783512234abc5bba Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 24 Mar 2023 10:00:17 +0100 Subject: [PATCH 1/3] ocamlPackages.tezos-base58: use Dune 3 --- pkgs/development/ocaml-modules/tezos-base58/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/ocaml-modules/tezos-base58/default.nix b/pkgs/development/ocaml-modules/tezos-base58/default.nix index 9a3079fc0e7f..1ed04a082d5b 100644 --- a/pkgs/development/ocaml-modules/tezos-base58/default.nix +++ b/pkgs/development/ocaml-modules/tezos-base58/default.nix @@ -12,6 +12,7 @@ buildDunePackage rec { }; minimalOCamlVersion = "4.08"; + duneVersion = "3"; propagatedBuildInputs = [ zarith digestif fmt From 02d564498703e5a6edb48f99674cdaaaee509949 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 24 Mar 2023 10:00:22 +0100 Subject: [PATCH 2/3] =?UTF-8?q?ocamlPackages.digestif:=201.1.2=20=E2=86=92?= =?UTF-8?q?=201.1.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/digestif/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/digestif/default.nix b/pkgs/development/ocaml-modules/digestif/default.nix index 75ecb7fc58fb..aea37701423c 100644 --- a/pkgs/development/ocaml-modules/digestif/default.nix +++ b/pkgs/development/ocaml-modules/digestif/default.nix @@ -1,22 +1,20 @@ { lib, ocaml, fetchurl, buildDunePackage -, pkg-config, which , eqaf , alcotest, astring, bos, findlib, fpath }: buildDunePackage rec { pname = "digestif"; - version = "1.1.2"; + version = "1.1.3"; minimalOCamlVersion = "4.08"; + duneVersion = "3"; src = fetchurl { url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-${version}.tbz"; - sha256 = "sha256-edNM5ROxFIV+OAqr328UcyGPGwXdflHQOJB3ntAbRmY="; + hash = "sha256-wyuOy8QLImRa49bjhrucnFqy/eEwolLplLGOsNWAyS4="; }; - nativeBuildInputs = [ findlib which ocaml pkg-config ]; - propagatedBuildInputs = [ eqaf ]; checkInputs = [ alcotest astring bos fpath ]; From 830dbba75df7d071d0c827b95e50e69c5a016143 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 24 Mar 2023 13:53:18 +0100 Subject: [PATCH 3/3] =?UTF-8?q?ocamlPackages.digestif:=201.1.3=20=E2=86=92?= =?UTF-8?q?=201.1.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/digestif/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/digestif/default.nix b/pkgs/development/ocaml-modules/digestif/default.nix index aea37701423c..4bdc9f2e5ca2 100644 --- a/pkgs/development/ocaml-modules/digestif/default.nix +++ b/pkgs/development/ocaml-modules/digestif/default.nix @@ -5,14 +5,14 @@ buildDunePackage rec { pname = "digestif"; - version = "1.1.3"; + version = "1.1.4"; minimalOCamlVersion = "4.08"; duneVersion = "3"; src = fetchurl { url = "https://github.com/mirage/digestif/releases/download/v${version}/digestif-${version}.tbz"; - hash = "sha256-wyuOy8QLImRa49bjhrucnFqy/eEwolLplLGOsNWAyS4="; + hash = "sha256-w3k+cg8NqAVPYobFRcghp/6+iC5/TlSX7ImxWjU1EeE="; }; propagatedBuildInputs = [ eqaf ];