tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zuse: init at 1.0
Yiyu Zhou
5 months ago
784b2d38
2ea007a2
+36
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
zu
zuse
package.nix
+36
pkgs/by-name/zu/zuse/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildGoModule,
4
4
+
fetchFromGitHub,
5
5
+
nix-update-script,
6
6
+
}:
7
7
+
8
8
+
buildGoModule (finalAttrs: {
9
9
+
pname = "zuse";
10
10
+
version = "1.0";
11
11
+
12
12
+
src = fetchFromGitHub {
13
13
+
owner = "babycommando";
14
14
+
repo = "zuse";
15
15
+
tag = "v${finalAttrs.version}";
16
16
+
hash = "sha256-zKAAHvbaR1HnRe6CmAEi/6iAOHCcbGVS1/jSrQwksRk=";
17
17
+
};
18
18
+
19
19
+
vendorHash = "sha256-P7T244d1OpFDqwRu3gdEI1OAqq9EbpL1YO2mlTw0Jew=";
20
20
+
21
21
+
ldflags = [
22
22
+
"-s"
23
23
+
"-w"
24
24
+
];
25
25
+
26
26
+
passthru.updateScript = nix-update-script { };
27
27
+
28
28
+
meta = {
29
29
+
description = "IRC client for the terminal made in Go with Bubbletea";
30
30
+
homepage = "https://github.com/babycommando/zuse";
31
31
+
changelog = "https://github.com/babycommando/zuse/releases/tag/${finalAttrs.src.tag}";
32
32
+
license = lib.licenses.asl20;
33
33
+
maintainers = with lib.maintainers; [ yiyu ];
34
34
+
mainProgram = "zuse";
35
35
+
};
36
36
+
})