mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
33 lines
880 B
Nix
33 lines
880 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 = "The 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 = [ maintainers.marsam ];
|
|
license = licenses.asl20;
|
|
mainProgram = "cointop";
|
|
};
|
|
}
|