File tree Expand file tree Collapse file tree 2 files changed +42
-4
lines changed
Expand file tree Collapse file tree 2 files changed +42
-4
lines changed Original file line number Diff line number Diff 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";
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments