nixpkgs/pkgs/tools/system/gotop/default.nix

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

41 lines
1.1 KiB
Nix
Raw Normal View History

2022-02-14 23:58:50 +01:00
{ lib, stdenv, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-04-12 16:15:13 +02:00
buildGoModule rec {
2019-04-10 22:22:48 +02:00
pname = "gotop";
2022-07-15 21:05:20 +02:00
version = "4.1.4";
2018-04-12 16:15:13 +02:00
src = fetchFromGitHub {
owner = "xxxserxxx";
2019-04-10 22:22:48 +02:00
repo = pname;
rev = "v${version}";
2022-07-15 21:05:20 +02:00
hash = "sha256-jAUlaj9Nv/ipzxAkG2myd9DIboHj7IarNMVk/FQ274g=";
2018-04-12 16:15:13 +02:00
};
2022-01-01 06:05:04 +01:00
proxyVendor = true;
2022-07-15 21:05:20 +02:00
vendorSha256 = "sha256-y4hVouvqMYUrdF7fowsvJLp0FCGCZDeVGUQXG8z8Lyg=";
2021-07-21 15:37:14 +02:00
ldflags = [ "-s" "-w" "-X main.Version=v${version}" ];
2021-02-06 13:52:00 +01:00
2022-02-14 23:58:50 +01:00
nativeBuildInputs = [ installShellFiles ];
2020-08-15 02:57:56 +02:00
preCheck = ''
export HOME=$(mktemp -d)
'';
doCheck = !stdenv.isDarwin;
2022-02-14 23:58:50 +01:00
postInstall = ''
$out/bin/gotop --create-manpage > gotop.1
installManPage gotop.1
'';
meta = with lib; {
2018-04-12 16:15:13 +02:00
description = "A terminal based graphical activity monitor inspired by gtop and vtop";
homepage = "https://github.com/xxxserxxx/gotop";
changelog = "https://github.com/xxxserxxx/gotop/raw/v${version}/CHANGELOG.md";
license = licenses.mit;
2018-04-12 16:15:13 +02:00
maintainers = [ maintainers.magnetophon ];
broken = stdenv.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
2018-04-12 16:15:13 +02:00
};
}