fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 buildNpmPackage,
4 fetchFromGitHub,
5}:
6
7buildNpmPackage rec {
8 pname = "gtop";
9 version = "1.1.5";
10
11 src = fetchFromGitHub {
12 owner = "aksakalli";
13 repo = "gtop";
14 rev = "v${version}";
15 hash = "sha256-FKbaUV28d0JH9tmTSJBFYQrM5iensnIpcXUFFvXDMe4=";
16 };
17
18 npmDepsHash = "sha256-QKMLFalaOQjhgVkv8lIDnKyH7+GOqOKIl3zoLwrHIF4=";
19
20 dontNpmBuild = true;
21
22 meta = {
23 description = "System monitoring dashboard for the terminal";
24 homepage = "https://github.com/aksakalli/gtop";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ tfc ];
27 mainProgram = "gtop";
28 };
29}