lol

ocamlPackages.atd: 2.11.0 → 2.15.0

authored by

Vincent Laporte and committed by
Vincent Laporte
2e5eaaa6 00d49686

+5 -8
+2 -3
pkgs/development/ocaml-modules/atd/default.nix
··· 1 - { lib, atdgen-codec-runtime, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }: 1 + { lib, atdgen-codec-runtime, cmdliner, menhir, easy-format, buildDunePackage, re, yojson, nixosTests }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "atd"; ··· 7 7 minimalOCamlVersion = "4.08"; 8 8 9 9 nativeBuildInputs = [ menhir ]; 10 + buildInputs = [ cmdliner ]; 10 11 propagatedBuildInputs = [ easy-format re yojson ]; 11 - 12 - strictDeps = true; 13 12 14 13 passthru.tests = { 15 14 smoke-test = nixosTests.atd;
+3 -5
pkgs/development/ocaml-modules/atdgen/codec-runtime.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "atdgen-codec-runtime"; 5 - version = "2.11.0"; 6 - 7 - duneVersion = "3"; 5 + version = "2.15.0"; 8 6 9 7 src = fetchurl { 10 - url = "https://github.com/ahrefs/atd/releases/download/${version}/atdts-${version}.tbz"; 11 - hash = "sha256-TTTuSxNKydPmTmztUapLoxntBIrAo8aWYIJ/G5cok1Y="; 8 + url = "https://github.com/ahrefs/atd/releases/download/${version}/atd-${version}.tbz"; 9 + hash = "sha256-ukJ5vtVNE9zz9nA6SzF0TbgV3yLAUC2ZZdbGdM4IOTM="; 12 10 }; 13 11 14 12 meta = {