From b45f61402b8af4c8d18251c179630646dbfc0859 Mon Sep 17 00:00:00 2001 From: Matteo Pacini Date: Sun, 10 Nov 2024 06:42:15 +0000 Subject: [PATCH] xcodes: with lib; cleanup --- pkgs/by-name/xc/xcodes/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/xc/xcodes/package.nix b/pkgs/by-name/xc/xcodes/package.nix index 9c1762beede5..d181913cb259 100644 --- a/pkgs/by-name/xc/xcodes/package.nix +++ b/pkgs/by-name/xc/xcodes/package.nix @@ -38,16 +38,16 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { 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 = with licenses; [ + license = with lib.licenses; [ mit # unxip lgpl3Only ]; - maintainers = with maintainers; [ _0x120581f emilytrau ]; - platforms = platforms.darwin; + maintainers = with lib.maintainers; [ _0x120581f emilytrau ]; + platforms = lib.platforms.darwin; }; })