lol

wallutils: 5.12.9 -> 5.14.2

kyehn b8973768 ebe33963

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