mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
30 lines
849 B
Nix
30 lines
849 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "cointop";
|
|
version = "1.4.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miguelmota";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1mkb97x73vzxnbvhnxx3msicr1z0b3sjmydx257ax3nscrmf1l5z";
|
|
};
|
|
|
|
goPackagePath = "github.com/miguelmota/cointop";
|
|
|
|
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;
|
|
};
|
|
}
|