Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
890 B
Nix
32 lines
890 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cointop";
|
|
version = "1.6.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miguelmota";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NAw1uoBL/FnNLJ86L9aBCOY65aJn1DDGK0Cd0IO2kr0=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "Fastest and most interactive terminal based UI application for tracking cryptocurrencies";
|
|
longDescription = ''
|
|
cointop is a fast and lightweight interactive terminal based UI
|
|
application for tracking and monitoring cryptocurrency coin stats in
|
|
real-time.
|
|
|
|
The interface is inspired by htop and shortcut keys are inspired by vim.
|
|
'';
|
|
homepage = "https://cointop.sh";
|
|
maintainers = with maintainers; [ sarcasticadmin ];
|
|
license = licenses.asl20;
|
|
mainProgram = "cointop";
|
|
};
|
|
}
|