From b8bf170aa9119754a9e284e50644dde8cccc5390 Mon Sep 17 00:00:00 2001 From: Yifei Sun Date: Fri, 24 Oct 2025 10:41:41 +0200 Subject: [PATCH] ocamlPackages.dockerfile: 8.3.2 -> 8.3.3 --- .../development/ocaml-modules/dockerfile/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/dockerfile/default.nix b/pkgs/development/ocaml-modules/dockerfile/default.nix index f052e9be0e40..7b738a49adfd 100644 --- a/pkgs/development/ocaml-modules/dockerfile/default.nix +++ b/pkgs/development/ocaml-modules/dockerfile/default.nix @@ -8,15 +8,15 @@ alcotest, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "dockerfile"; - version = "8.3.2"; + version = "8.3.3"; src = fetchFromGitHub { owner = "ocurrent"; repo = "ocaml-dockerfile"; - tag = version; - hash = "sha256-L4TjCf8SaNMxqkrr+AoL/Lx2oWgf2owJFs26lu68ejs="; + tag = finalAttrs.version; + hash = "sha256-F58KnC4YpsS0ehmi6efFMT+WG5BDuYfQOA1RsFVtO/8="; }; propagatedBuildInputs = [ @@ -35,8 +35,8 @@ buildDunePackage rec { description = "Interface for creating Dockerfiles"; homepage = "https://www.ocurrent.org/ocaml-dockerfile/dockerfile/Dockerfile/index.html"; downloadPage = "https://github.com/ocurrent/ocaml-dockerfile"; - changelog = "https://github.com/ocurrent/ocaml-dockerfile/blob/v${version}/CHANGES.md"; + changelog = "https://github.com/ocurrent/ocaml-dockerfile/blob/${finalAttrs.version}/CHANGES.md"; license = lib.licenses.isc; maintainers = [ lib.maintainers.ethancedwards8 ]; }; -} +})