nixpkgs/pkgs/applications/misc/cointop/default.nix

30 lines
849 B
Nix
Raw Normal View History

2019-09-21 09:21:00 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
2018-05-03 12:04:50 +00:00
2019-09-21 09:21:00 +00:00
buildGoPackage rec {
pname = "cointop";
2020-06-14 11:53:24 +00:00
version = "1.4.6";
2018-05-03 12:04:50 +00:00
src = fetchFromGitHub {
owner = "miguelmota";
repo = pname;
rev = version;
2020-06-14 11:53:24 +00:00
sha256 = "1mkb97x73vzxnbvhnxx3msicr1z0b3sjmydx257ax3nscrmf1l5z";
2018-05-03 12:04:50 +00:00
};
2019-09-21 09:21:00 +00:00
goPackagePath = "github.com/miguelmota/cointop";
2018-05-03 12:04:50 +00:00
meta = with lib; {
2018-05-03 12:04:50 +00:00
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.
2018-05-03 12:04:50 +00:00
The interface is inspired by htop and shortcut keys are inspired by vim.
2018-05-03 12:04:50 +00:00
'';
homepage = "https://cointop.sh";
maintainers = [ maintainers.marsam ];
license = licenses.asl20;
2018-05-03 12:04:50 +00:00
};
}