Skip to content

Commit 00d7c48

Browse files
committed
sbb-tui: init at 1.13.4
1 parent 63382f9 commit 00d7c48

File tree

2 files changed

+42
-4
lines changed

2 files changed

+42
-4
lines changed

maintainers/maintainer-list.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27724,10 +27724,10 @@
2772427724
name = "Tomas Kala";
2772527725
};
2772627726
tomasrivera = {
27727-
email = "tomas.riveral@icloud.com";
27728-
github = "tomasriveral";
27729-
githubId = 137088692;
27730-
name = "Tomás Rivera";
27727+
email = "tomas.riveral@icloud.com";
27728+
github = "tomasriveral";
27729+
githubId = 137088692;
27730+
name = "Tomás Rivera";
2773127731
};
2773227732
tomberek = {
2773327733
email = "tomberek@gmail.com";
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
nix-update-script,
6+
}:
7+
8+
buildGoModule rec {
9+
pname = "sbb-tui";
10+
version = "1.13.4";
11+
__structuredAttrs = true;
12+
src = fetchFromGitHub {
13+
owner = "Necrom4";
14+
repo = "sbb-tui";
15+
rev = "v${version}";
16+
sha256 = "sha256-JLjAhs5UbqgNYqpA3cDucrAS6ell+0JiDJNf7G33Nhs=";
17+
};
18+
19+
vendorHash = "sha256-K4DOu3rfSlKAa5JNKCzWWpnWZlXXxtN5Po7p1Spqe1w=";
20+
21+
ldflags = [
22+
"-s"
23+
"-w"
24+
];
25+
26+
doCheck = true;
27+
28+
passthru.updateScript = nix-update-script { };
29+
30+
meta = with lib; {
31+
description = "TUI client for Switzerland's public transport timetables, inspired by SBB/CFF/FFS app";
32+
homepage = "https://github.com/Necrom4/sbb-tui";
33+
license = licenses.mit;
34+
platforms = platforms.unix;
35+
maintainers = with maintainers; [ tomasrivera ];
36+
mainProgram = "sbb-tui";
37+
};
38+
}

0 commit comments

Comments
 (0)