Merge pull request #61669 from matthiasbeyer/update-cointop
cointop: unstable -> 1.2.0
This commit is contained in:
commit
1b698b8392
@ -1,31 +1,29 @@
|
|||||||
{ stdenv, buildGoPackage, fetchgit }:
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
name = "cointop-unstable-${version}";
|
pname = "cointop";
|
||||||
version = "2018-05-03";
|
version = "1.2.0";
|
||||||
rev = "08acd96082682347d458cd4f861e2debd3255745";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/miguelmota/cointop";
|
src = fetchFromGitHub {
|
||||||
|
owner = "miguelmota";
|
||||||
src = fetchgit {
|
repo = pname;
|
||||||
inherit rev;
|
rev = version;
|
||||||
url = "https://github.com/miguelmota/cointop";
|
sha256 = "1vhsbk55rrsmnh9b3cxjiv1pzdiip54cyj31j4aj33vlr4hkampn";
|
||||||
sha256 = "14savz48wzrfpm12fgnnndpl3mpzx7wsch4jrnm3rmrfdabdx7mi";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
goDeps = ./deps.nix;
|
modSha256 = "0vvypp97b3bjwxb96hajpjzr52sb5lc4r3zdkrdgg3vjwwacjwsn";
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "The fastest and most interactive terminal based UI application for tracking cryptocurrencies";
|
description = "The fastest and most interactive terminal based UI application for tracking cryptocurrencies";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
cointop is a fast and lightweight interactive terminal based UI application
|
cointop is a fast and lightweight interactive terminal based UI
|
||||||
for tracking and monitoring cryptocurrency coin stats in real-time.
|
application for tracking and monitoring cryptocurrency coin stats in
|
||||||
|
real-time.
|
||||||
|
|
||||||
The interface is inspired by htop and shortcut keys are inspired by vim.
|
The interface is inspired by htop and shortcut keys are inspired by vim.
|
||||||
'';
|
'';
|
||||||
homepage = https://cointop.sh;
|
homepage = "https://cointop.sh";
|
||||||
platforms = stdenv.lib.platforms.unix; # cannot test others
|
maintainers = [ maintainers.marsam ];
|
||||||
maintainers = [ ];
|
license = licenses.asl20;
|
||||||
license = stdenv.lib.licenses.asl20;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
3
pkgs/applications/misc/cointop/deps.nix
generated
3
pkgs/applications/misc/cointop/deps.nix
generated
@ -1,3 +0,0 @@
|
|||||||
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
|
||||||
[
|
|
||||||
]
|
|
Loading…
Reference in New Issue
Block a user