nixpkgs/pkgs/applications/misc/ticker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
747 B
Nix
Raw Normal View History

2021-03-01 09:22:23 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2021-02-06 16:46:47 +00:00
buildGoModule rec {
pname = "ticker";
2022-03-05 19:00:30 +00:00
version = "4.5.1";
2021-02-06 16:46:47 +00:00
src = fetchFromGitHub {
owner = "achannarasappa";
2021-03-01 09:22:23 +00:00
repo = pname;
2021-02-06 16:46:47 +00:00
rev = "v${version}";
2022-03-05 19:00:30 +00:00
sha256 = "sha256-LY9js3ckkSTsE5td3VV4DPXeoxhw9MjOa35SdxMlUqk=";
2021-02-06 16:46:47 +00:00
};
2022-02-22 17:23:33 +00:00
vendorSha256 = "sha256-6bosJ2AlbLZ551tCNPmvNyyReFJG+iS3SYUFti2/CAw=";
2021-02-06 16:46:47 +00:00
2021-08-21 08:23:47 +00:00
ldflags = [
"-s" "-w" "-X github.com/achannarasappa/ticker/cmd.Version=v${version}"
];
2021-03-01 09:22:23 +00:00
2021-02-06 16:46:47 +00:00
# Tests require internet
doCheck = false;
meta = with lib; {
description = "Terminal stock ticker with live updates and position tracking";
homepage = "https://github.com/achannarasappa/ticker";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ siraben ];
};
}