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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
894 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-05-03 12:04:50 +00:00
buildGoModule rec {
pname = "cointop";
2021-12-19 15:11:17 +00:00
version = "1.6.10";
2018-05-03 12:04:50 +00:00
src = fetchFromGitHub {
owner = "miguelmota";
repo = pname;
2020-09-09 04:20:00 +00:00
rev = "v${version}";
2021-12-19 15:11:17 +00:00
sha256 = "sha256-NAw1uoBL/FnNLJ86L9aBCOY65aJn1DDGK0Cd0IO2kr0=";
2018-05-03 12:04:50 +00:00
};
vendorHash = null;
2018-05-03 12:04:50 +00:00
2021-12-19 15:11:17 +00:00
ldflags = [ "-s" "-w" ];
2020-09-09 04:20:00 +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 = with maintainers; [ sarcasticadmin ];
license = licenses.asl20;
2024-02-11 02:19:15 +00:00
mainProgram = "cointop";
2018-05-03 12:04:50 +00:00
};
}