From 77486e63694b95ef083627fff080819c792d39b2 Mon Sep 17 00:00:00 2001 From: 0x120581f <130835755+0x120581f@users.noreply.github.com> Date: Wed, 28 Jun 2023 19:18:42 +0200 Subject: [PATCH] xcodes: 1.3.0 -> 1.4.1 (#240307) Update: version to 1.4.1 Add: meta.changelog attribute --- pkgs/development/tools/xcodes/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/xcodes/default.nix b/pkgs/development/tools/xcodes/default.nix index 0309e29cae6b..f10fd76aa020 100644 --- a/pkgs/development/tools/xcodes/default.nix +++ b/pkgs/development/tools/xcodes/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "xcodes"; - version = "1.3.0"; + version = "1.4.1"; src = fetchurl { url = "https://github.com/XcodesOrg/xcodes/releases/download/${finalAttrs.version}/xcodes.zip"; - hash = "sha256:0cqb0gfb80xrnm4fipr46kbzqz2kicc13afhdxkbifzm4k83any5"; + hash = "sha256-PtXF2eqNfEX29EtXlcjdxrUs7BPn/YurUuFFeLpXwrk="; }; nativeBuildInputs = [ unzip ]; @@ -31,6 +31,7 @@ stdenv.mkDerivation (finalAttrs: { dontFixup = true; meta = with lib; { + changelog = "https://github.com/XcodesOrg/xcodes/releases/tag/${finalAttrs.version}"; description = "Command-line tool to install and switch between multiple versions of Xcode"; homepage = "https://github.com/XcodesOrg/xcodes"; license = licenses.mit;