From 578fbbb3db93773def13e11af0f78c5e93c1dc08 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 6 Apr 2023 08:05:41 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.atdgen:=202.10.0=20=E2=86=92=202.?= =?UTF-8?q?11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/atdgen/codec-runtime.nix | 6 ++++-- pkgs/development/ocaml-modules/atdgen/default.nix | 2 ++ pkgs/development/ocaml-modules/atdgen/runtime.nix | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix index 6dce840e914c..ab1e82df1e99 100644 --- a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix +++ b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix @@ -2,11 +2,13 @@ buildDunePackage rec { pname = "atdgen-codec-runtime"; - version = "2.10.0"; + version = "2.11.0"; + + duneVersion = "3"; src = fetchurl { url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz"; - sha256 = "sha256-d9J0CaTp2sQbnKLp6mCDbGwYAIsioVer7ftaLSSFCZg="; + hash = "sha256-TTTuSxNKydPmTmztUapLoxntBIrAo8aWYIJ/G5cok1Y="; }; meta = { diff --git a/pkgs/development/ocaml-modules/atdgen/default.nix b/pkgs/development/ocaml-modules/atdgen/default.nix index 07ee079cae30..60bca80fa6f4 100644 --- a/pkgs/development/ocaml-modules/atdgen/default.nix +++ b/pkgs/development/ocaml-modules/atdgen/default.nix @@ -6,6 +6,8 @@ buildDunePackage { pname = "atdgen"; inherit (atdgen-codec-runtime) version src; + duneVersion = "3"; + buildInputs = [ atd re ]; propagatedBuildInputs = [ atdgen-runtime ]; diff --git a/pkgs/development/ocaml-modules/atdgen/runtime.nix b/pkgs/development/ocaml-modules/atdgen/runtime.nix index 0006e8613c58..c70d3752cdef 100644 --- a/pkgs/development/ocaml-modules/atdgen/runtime.nix +++ b/pkgs/development/ocaml-modules/atdgen/runtime.nix @@ -5,6 +5,7 @@ buildDunePackage rec { inherit (atdgen-codec-runtime) version src; minimalOCamlVersion = "4.08"; + duneVersion = "3"; propagatedBuildInputs = [ biniou yojson ];