From aad0a65ebf77b1ea1f0ab8b5af0028566192bd9e Mon Sep 17 00:00:00 2001 From: zi3m5f <113244000+zi3m5f@users.noreply.github.com> Date: Sat, 19 Oct 2024 13:53:24 +0200 Subject: [PATCH] podman-desktop: use correct version for changelog Remove discouraged use of `with lib;` which allowed the change of `finalAttrs.version` to `version` in meta.changelog work albeit with the wrong version from lib. --- .../virtualization/podman-desktop/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/virtualization/podman-desktop/default.nix b/pkgs/applications/virtualization/podman-desktop/default.nix index 8b27d6323d4a..1762e96e2a04 100644 --- a/pkgs/applications/virtualization/podman-desktop/default.nix +++ b/pkgs/applications/virtualization/podman-desktop/default.nix @@ -107,12 +107,12 @@ stdenv.mkDerivation (finalAttrs: { }) ]; - meta = with lib; { + meta = { description = "A graphical tool for developing on containers and Kubernetes"; homepage = "https://podman-desktop.io"; - changelog = "https://github.com/containers/podman-desktop/releases/tag/v${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ booxter panda2134 ]; + changelog = "https://github.com/containers/podman-desktop/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ booxter panda2134 ]; inherit (electron.meta) platforms; mainProgram = "podman-desktop"; };