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

30 lines
866 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-05-03 12:04:50 +00:00
buildGoModule rec {
pname = "cointop";
version = "1.2.0";
2018-05-03 12:04:50 +00:00
src = fetchFromGitHub {
owner = "miguelmota";
repo = pname;
rev = version;
sha256 = "1vhsbk55rrsmnh9b3cxjiv1pzdiip54cyj31j4aj33vlr4hkampn";
2018-05-03 12:04:50 +00:00
};
modSha256 = "0vvypp97b3bjwxb96hajpjzr52sb5lc4r3zdkrdgg3vjwwacjwsn";
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
};
}