Merge pull request #39920 from matthiasbeyer/add-cointop

cointop: init at 2018-05-03
This commit is contained in:
xeji 2018-05-03 15:55:07 +02:00 committed by GitHub
commit d042b53f73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "cointop-unstable-${version}";
version = "2018-05-03";
rev = "08acd96082682347d458cd4f861e2debd3255745";
goPackagePath = "github.com/miguelmota/cointop";
src = fetchgit {
inherit rev;
url = "https://github.com/miguelmota/cointop";
sha256 = "14savz48wzrfpm12fgnnndpl3mpzx7wsch4jrnm3rmrfdabdx7mi";
};
goDeps = ./deps.nix;
meta = {
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;
platforms = stdenv.lib.platforms.linux; # cannot test others
maintainers = [ ];
};
}

3
pkgs/applications/misc/cointop/deps.nix generated Normal file
View File

@ -0,0 +1,3 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
[
]

View File

@ -8638,6 +8638,8 @@ with pkgs;
CoinMP = callPackage ../development/libraries/CoinMP { };
cointop = callPackage ../applications/misc/cointop { };
commoncpp2 = callPackage ../development/libraries/commoncpp2 { };
confuse = callPackage ../development/libraries/confuse { };