2021-03-09 03:18:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2021-02-19 19:06:45 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "ticker";
|
2021-08-23 08:02:39 +00:00
|
|
|
version = "4.2.1";
|
2021-02-19 19:06:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "achannarasappa";
|
2021-03-09 03:18:52 +00:00
|
|
|
repo = pname;
|
2021-02-19 19:06:45 +00:00
|
|
|
rev = "v${version}";
|
2021-08-23 08:02:39 +00:00
|
|
|
sha256 = "sha256-T9pApuzATohiOUmWa+GBlLrlTNgKNMwtW6fSPO/NS6Y=";
|
2021-02-19 19:06:45 +00:00
|
|
|
};
|
|
|
|
|
2021-08-23 08:02:39 +00:00
|
|
|
vendorSha256 = "sha256-vTB1RPg1LN44bkWrdGEXR6WRlM/Q2EITUO0yt5ar/zg=";
|
2021-02-19 19:06:45 +00:00
|
|
|
|
2021-08-22 07:53:02 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-X github.com/achannarasappa/ticker/cmd.Version=v${version}"
|
|
|
|
];
|
2021-03-09 03:18:52 +00:00
|
|
|
|
2021-02-19 19:06:45 +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 ];
|
|
|
|
};
|
|
|
|
}
|