summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-05-03 15:55:07 +0200
committerGitHub <noreply@github.com>2018-05-03 15:55:07 +0200
commitd042b53f738b8819fae383df47d3bed262d41ca3 (patch)
treedc3bc2fb43fc06348ebc4da099f8925490bbb11d /pkgs/applications/misc
parentef01f17c2dcfea87669019349d7d11bb32fd4d88 (diff)
parent7c644a51a62c116339389483198c118ef8db5fd1 (diff)
downloadnixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar.gz
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar.bz2
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar.lz
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar.xz
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.tar.zst
nixlib-d042b53f738b8819fae383df47d3bed262d41ca3.zip
Merge pull request #39920 from matthiasbeyer/add-cointop
cointop: init at 2018-05-03
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/cointop/default.nix30
-rw-r--r--pkgs/applications/misc/cointop/deps.nix3
2 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/misc/cointop/default.nix b/pkgs/applications/misc/cointop/default.nix
new file mode 100644
index 000000000000..2ac335759ce4
--- /dev/null
+++ b/pkgs/applications/misc/cointop/default.nix
@@ -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 = [ ];
+  };
+}
diff --git a/pkgs/applications/misc/cointop/deps.nix b/pkgs/applications/misc/cointop/deps.nix
new file mode 100644
index 000000000000..3ba1d12a8048
--- /dev/null
+++ b/pkgs/applications/misc/cointop/deps.nix
@@ -0,0 +1,3 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+[
+]