python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / ticker / default.nix
blob4d3baf3feaeb2955c5790bed0f307e19d0dc7acc
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ticker";
8   version = "4.5.4";
10   src = fetchFromGitHub {
11     owner = "achannarasappa";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-2Q+5EVeF8kXO4RogQIQHafV0AKIEKBFGqt27Vkanwss=";
15   };
17   vendorSha256 = "sha256-6bosJ2AlbLZ551tCNPmvNyyReFJG+iS3SYUFti2/CAw=";
19   ldflags = [
20     "-s" "-w" "-X github.com/achannarasappa/ticker/cmd.Version=v${version}"
21   ];
23   # Tests require internet
24   doCheck = false;
26   meta = with lib; {
27     description = "Terminal stock ticker with live updates and position tracking";
28     homepage = "https://github.com/achannarasappa/ticker";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ siraben ];
31   };