alps: 2022-06-03 -> 2022-10-18

+13 -5
+13 -5
pkgs/servers/alps/default.nix
··· 1 - { lib, buildGoModule, fetchFromSourcehut, nixosTests }: 1 + { lib, buildGoModule, fetchFromSourcehut, fetchpatch, nixosTests }: 2 2 3 3 buildGoModule rec { 4 4 pname = "alps"; 5 - version = "2022-06-03"; 5 + version = "2022-10-18"; 6 6 7 7 src = fetchFromSourcehut { 8 8 owner = "~migadu"; 9 9 repo = "alps"; 10 - rev = "9cb23b09975e95f6a5952e3718eaf471c3e3510f"; 11 - hash = "sha256-BUV1/BRIXHEf2FU1rdmNgueo8KSUlMKbIpAg2lFs3hA="; 10 + rev = "f01fbcbc48db5e65d69a0ebd9d7cb0deb378cf13"; 11 + hash = "sha256-RSug3YSiqYLGs05Bee4NoaoCyPvUZ7IqlKWI1hmxbiA="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-cpY+lYM/nAX3nUaFknrRAavxDk8UDzJkoqFjJ1/KWeg="; 14 + vendorSha256 = "sha256-XDm6LU9D/rVQHiko7EFpocv+IktGe6tQhJYRrOJxeSs="; 15 15 16 16 ldflags = [ 17 17 "-s" 18 18 "-w" 19 19 "-X main.themesPath=${placeholder "out"}/share/alps/themes" 20 20 "-X git.sr.ht/~migadu/alps.PluginDir=${placeholder "out"}/share/alps/plugins" 21 + ]; 22 + 23 + patches = [ 24 + (fetchpatch { 25 + name = "Issue-160-Alps-theme-has-a-enormous-move-to-list-sel"; 26 + url = "https://lists.sr.ht/~migadu/alps-devel/patches/30096/mbox"; 27 + hash = "sha256-Sz/SCkrrXZWrmJzjfPXi+UfCcbwsy6QiA7m34iiEFX0="; 28 + }) 21 29 ]; 22 30 23 31 postPatch = ''