lol

wallutils: 5.12.9 -> 5.14.2

kyehn b8973768 ebe33963

+6 -6
+6 -6
pkgs/by-name/wa/wallutils/package.nix
··· 12 12 xbitmaps, 13 13 }: 14 14 15 - buildGoModule rec { 15 + buildGoModule (finalAttrs: { 16 16 pname = "wallutils"; 17 - version = "5.12.9"; 17 + version = "5.14.2"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "xyproto"; 21 21 repo = "wallutils"; 22 - rev = version; 23 - hash = "sha256-kayzaNOV2xTjbMeGUJ1jMLGxcVZzYkMLr6qWlAupPKM="; 22 + tag = "v${finalAttrs.version}"; 23 + hash = "sha256-mcleLQIBG8L5cpA4QYZpDsBdZbJlyDx7XXwDtAV4sjU="; 24 24 }; 25 25 26 26 vendorHash = null; ··· 68 68 69 69 meta = { 70 70 description = "Utilities for handling monitors, resolutions, and (timed) wallpapers"; 71 - inherit (src.meta) homepage; 71 + inherit (finalAttrs.src.meta) homepage; 72 72 license = lib.licenses.bsd3; 73 73 maintainers = [ ]; 74 74 inherit (wayland.meta) platforms; 75 75 badPlatforms = lib.platforms.darwin; 76 76 }; 77 - } 77 + })