tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
wallutils: 5.12.9 -> 5.14.2
kyehn
6 months ago
b8973768
ebe33963
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wa
wallutils
package.nix
+6
-6
pkgs/by-name/wa/wallutils/package.nix
···
12
12
xbitmaps,
13
13
}:
14
14
15
15
-
buildGoModule rec {
15
15
+
buildGoModule (finalAttrs: {
16
16
pname = "wallutils";
17
17
-
version = "5.12.9";
17
17
+
version = "5.14.2";
18
18
19
19
src = fetchFromGitHub {
20
20
owner = "xyproto";
21
21
repo = "wallutils";
22
22
-
rev = version;
23
23
-
hash = "sha256-kayzaNOV2xTjbMeGUJ1jMLGxcVZzYkMLr6qWlAupPKM=";
22
22
+
tag = "v${finalAttrs.version}";
23
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
71
-
inherit (src.meta) homepage;
71
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
-
}
77
77
+
})