tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
alps: 2022-06-03 -> 2022-10-18
Henri Menke
3 years ago
ee758abe
9820effb
+13
-5
1 changed file
expand all
collapse all
unified
split
pkgs
servers
alps
default.nix
+13
-5
pkgs/servers/alps/default.nix
···
1
1
-
{ lib, buildGoModule, fetchFromSourcehut, nixosTests }:
1
1
+
{ lib, buildGoModule, fetchFromSourcehut, fetchpatch, nixosTests }:
2
2
3
3
buildGoModule rec {
4
4
pname = "alps";
5
5
-
version = "2022-06-03";
5
5
+
version = "2022-10-18";
6
6
7
7
src = fetchFromSourcehut {
8
8
owner = "~migadu";
9
9
repo = "alps";
10
10
-
rev = "9cb23b09975e95f6a5952e3718eaf471c3e3510f";
11
11
-
hash = "sha256-BUV1/BRIXHEf2FU1rdmNgueo8KSUlMKbIpAg2lFs3hA=";
10
10
+
rev = "f01fbcbc48db5e65d69a0ebd9d7cb0deb378cf13";
11
11
+
hash = "sha256-RSug3YSiqYLGs05Bee4NoaoCyPvUZ7IqlKWI1hmxbiA=";
12
12
};
13
13
14
14
-
vendorSha256 = "sha256-cpY+lYM/nAX3nUaFknrRAavxDk8UDzJkoqFjJ1/KWeg=";
14
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
21
+
];
22
22
+
23
23
+
patches = [
24
24
+
(fetchpatch {
25
25
+
name = "Issue-160-Alps-theme-has-a-enormous-move-to-list-sel";
26
26
+
url = "https://lists.sr.ht/~migadu/alps-devel/patches/30096/mbox";
27
27
+
hash = "sha256-Sz/SCkrrXZWrmJzjfPXi+UfCcbwsy6QiA7m34iiEFX0=";
28
28
+
})
21
29
];
22
30
23
31
postPatch = ''