mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
poptop: init at 0.1.8
This commit is contained in:
parent
c4a0a122c0
commit
fc95088f11
30
pkgs/by-name/po/poptop/package.nix
Normal file
30
pkgs/by-name/po/poptop/package.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
let
|
||||
pname = "poptop";
|
||||
version = "0.1.8";
|
||||
in
|
||||
buildGoModule {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bakks";
|
||||
repo = "poptop";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-CwJpkGNTDmtXfJx6GGz2XRU0fMeKl7I3fXm4BJ9MAQ4=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-Ccvr+J+GDKnhlrlv0/kTaQYD986As7yb/h6Vyiuqjoc=";
|
||||
|
||||
meta = {
|
||||
description = "Modern top command that charts system metrics like CPU load, network IO, etc in the terminal";
|
||||
changelog = "https://github.com/bakks/poptop/releases/tag/v${version}";
|
||||
homepage = "https://github.com/bakks/poptop";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
||||
mainProgram = "poptop";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user