about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-11-17 07:55:26 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2023-11-24 06:34:22 +0100
commit2e5eaaa6f52e20b1ce4023f1a972be4111c33859 (patch)
tree540c71a656d3339ec41f5dcec1f2f8faf97ddb3e /pkgs/development/ocaml-modules
parent00d4968679d4943b33639891a041daa07a4f7395 (diff)
ocamlPackages.atd: 2.11.0 → 2.15.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/atd/default.nix5
-rw-r--r--pkgs/development/ocaml-modules/atdgen/codec-runtime.nix8
2 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/development/ocaml-modules/atd/default.nix b/pkgs/development/ocaml-modules/atd/default.nix
index 61dd0f1084c1f..16944c7b38bc2 100644
--- a/pkgs/development/ocaml-modules/atd/default.nix
+++ b/pkgs/development/ocaml-modules/atd/default.nix
@@ -1,4 +1,4 @@
-{ lib, atdgen-codec-runtime, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }:
+{ lib, atdgen-codec-runtime, cmdliner, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }:
 
 buildDunePackage rec {
   pname = "atd";
@@ -7,10 +7,9 @@ buildDunePackage rec {
   minimalOCamlVersion = "4.08";
 
   nativeBuildInputs = [ menhir ];
+  buildInputs = [ cmdliner ];
   propagatedBuildInputs = [ easy-format re yojson ];
 
-  strictDeps = true;
-
   passthru.tests = {
     smoke-test = nixosTests.atd;
   };
diff --git a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
index ab1e82df1e99c..d2a875080eab4 100644
--- a/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
+++ b/pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
@@ -2,13 +2,11 @@
 
 buildDunePackage rec {
   pname = "atdgen-codec-runtime";
-  version = "2.11.0";
-
-  duneVersion = "3";
+  version = "2.15.0";
 
   src = fetchurl {
-    url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz";
-    hash = "sha256-TTTuSxNKydPmTmztUapLoxntBIrAo8aWYIJ/G5cok1Y=";
+    url = "https://github.com/ahrefs/atd/releases/download/${version}/atd-${version}.tbz";
+    hash = "sha256-ukJ5vtVNE9zz9nA6SzF0TbgV3yLAUC2ZZdbGdM4IOTM=";
   };
 
   meta = {