mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
28 lines
614 B
Nix
28 lines
614 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "gtop";
|
|
version = "1.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aksakalli";
|
|
repo = "gtop";
|
|
rev = "v${version}";
|
|
hash = "sha256-FKbaUV28d0JH9tmTSJBFYQrM5iensnIpcXUFFvXDMe4=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-QKMLFalaOQjhgVkv8lIDnKyH7+GOqOKIl3zoLwrHIF4=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
description = "System monitoring dashboard for the terminal";
|
|
homepage = "https://github.com/aksakalli/gtop";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ tfc ];
|
|
mainProgram = "gtop";
|
|
};
|
|
}
|