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
-
{ lib, buildGoModule, fetchFromSourcehut, nixosTests }:
2
3
buildGoModule rec {
4
pname = "alps";
5
-
version = "2022-06-03";
6
7
src = fetchFromSourcehut {
8
owner = "~migadu";
9
repo = "alps";
10
-
rev = "9cb23b09975e95f6a5952e3718eaf471c3e3510f";
11
-
hash = "sha256-BUV1/BRIXHEf2FU1rdmNgueo8KSUlMKbIpAg2lFs3hA=";
12
};
13
14
-
vendorSha256 = "sha256-cpY+lYM/nAX3nUaFknrRAavxDk8UDzJkoqFjJ1/KWeg=";
15
16
ldflags = [
17
"-s"
18
"-w"
19
"-X main.themesPath=${placeholder "out"}/share/alps/themes"
20
"-X git.sr.ht/~migadu/alps.PluginDir=${placeholder "out"}/share/alps/plugins"
0
0
0
0
0
0
0
0
21
];
22
23
postPatch = ''
···
1
+
{ lib, buildGoModule, fetchFromSourcehut, fetchpatch, nixosTests }:
2
3
buildGoModule rec {
4
pname = "alps";
5
+
version = "2022-10-18";
6
7
src = fetchFromSourcehut {
8
owner = "~migadu";
9
repo = "alps";
10
+
rev = "f01fbcbc48db5e65d69a0ebd9d7cb0deb378cf13";
11
+
hash = "sha256-RSug3YSiqYLGs05Bee4NoaoCyPvUZ7IqlKWI1hmxbiA=";
12
};
13
14
+
vendorSha256 = "sha256-XDm6LU9D/rVQHiko7EFpocv+IktGe6tQhJYRrOJxeSs=";
15
16
ldflags = [
17
"-s"
18
"-w"
19
"-X main.themesPath=${placeholder "out"}/share/alps/themes"
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
+
})
29
];
30
31
postPatch = ''