mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
cointop: 2018-05-03 -> 1.2.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
d8d85a2cd2
commit
105d274058
@ -1,31 +1,29 @@
|
||||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "cointop-unstable-${version}";
|
||||
version = "2018-05-03";
|
||||
rev = "08acd96082682347d458cd4f861e2debd3255745";
|
||||
buildGoModule rec {
|
||||
pname = "cointop";
|
||||
version = "1.2.0";
|
||||
|
||||
goPackagePath = "github.com/miguelmota/cointop";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/miguelmota/cointop";
|
||||
sha256 = "14savz48wzrfpm12fgnnndpl3mpzx7wsch4jrnm3rmrfdabdx7mi";
|
||||
src = fetchFromGitHub {
|
||||
owner = "miguelmota";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1vhsbk55rrsmnh9b3cxjiv1pzdiip54cyj31j4aj33vlr4hkampn";
|
||||
};
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
modSha256 = "0vvypp97b3bjwxb96hajpjzr52sb5lc4r3zdkrdgg3vjwwacjwsn";
|
||||
|
||||
meta = {
|
||||
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.
|
||||
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.
|
||||
The interface is inspired by htop and shortcut keys are inspired by vim.
|
||||
'';
|
||||
homepage = https://cointop.sh;
|
||||
platforms = stdenv.lib.platforms.unix; # cannot test others
|
||||
maintainers = [ ];
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
homepage = "https://cointop.sh";
|
||||
maintainers = [ maintainers.marsam ];
|
||||
license = 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