mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #334606 from luftmensch-luftmensch/poptop_0.1.8
This commit is contained in:
commit
95dfbbf90c
1 changed files with 30 additions and 0 deletions
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 a new issue