From 0664f3de401cb736cb812ac0ae49554505a3b167 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Wed, 15 Oct 2025 10:12:05 +0200 Subject: [PATCH] colloid-gtk-theme: modernize derivation --- pkgs/by-name/co/colloid-gtk-theme/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/co/colloid-gtk-theme/package.nix b/pkgs/by-name/co/colloid-gtk-theme/package.nix index cf46832fb14b..79d6bd2c1687 100644 --- a/pkgs/by-name/co/colloid-gtk-theme/package.nix +++ b/pkgs/by-name/co/colloid-gtk-theme/package.nix @@ -54,14 +54,14 @@ lib.checkListOfEnum "colloid-gtk-theme: theme variants" tweaks stdenvNoCC.mkDerivation - rec { + (finalAttrs: { inherit pname; version = "2025-07-31"; src = fetchFromGitHub { owner = "vinceliuice"; repo = "colloid-gtk-theme"; - tag = version; + tag = finalAttrs.version; hash = "sha256-0pXbeeBAkk6v2DBWfUYhWWdyrQhgr/JfDbhyS33maMM="; }; @@ -93,11 +93,11 @@ lib.checkListOfEnum "colloid-gtk-theme: theme variants" runHook postInstall ''; - meta = with lib; { + meta = { description = "Modern and clean Gtk theme"; homepage = "https://github.com/vinceliuice/Colloid-gtk-theme"; - license = licenses.gpl3Only; - platforms = platforms.unix; - maintainers = [ maintainers.romildo ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.romildo ]; }; - } + })