mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
33 lines
747 B
Nix
33 lines
747 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ticker";
|
|
version = "4.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "achannarasappa";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KICxcfZLBwCo12p5R9wt7Tk440wkUIE7G6lGfWIdxR8=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-aPL3npryiCv+SiSyEUNhdPCDmM/hJDMspCbSNy+SuoA=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/achannarasappa/ticker/cmd.Version=v${version}"
|
|
];
|
|
|
|
# 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 ];
|
|
};
|
|
}
|