colloid-gtk-theme: modernize derivation

This commit is contained in:
Stefan Frijters
2025-10-15 10:12:05 +02:00
parent 4b568a932b
commit 0664f3de40
@@ -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 ];
};
}
})