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

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

43 lines
1.0 KiB
Nix
Raw Normal View History

2022-08-10 11:44:04 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gopsuinfo";
2023-07-02 11:20:06 +00:00
version = "0.1.5";
2022-08-10 11:44:04 +00:00
src = fetchFromGitHub {
owner = "nwg-piotr";
repo = "gopsuinfo";
rev = "v${version}";
2023-07-02 11:20:06 +00:00
sha256 = "sha256-h+CdiQh7IguCduIMCCI/UPIUAdXlNSHdkz6hrG10h3c=";
2022-08-10 11:44:04 +00:00
};
2023-03-07 12:34:42 +00:00
vendorHash = "sha256-S2ZHfrbEjPDweazwWbMbEMcMl/i+8Nru0G0e7RjOJMk=";
2022-08-10 11:44:04 +00:00
# Remove installing of binary from the Makefile (already taken care of by
# `buildGoModule`)
patches = [
./no_bin_install.patch
];
# Fix absolute path of icons in the code
postPatch = ''
substituteInPlace gopsuinfo.go \
--replace "/usr/share/gopsuinfo" "$out/usr/share/gopsuinfo"
'';
# Install icons
postInstall = '' make install DESTDIR=$out '';
meta = with lib; {
description = "A gopsutil-based command to display system usage info";
homepage = "https://github.com/nwg-piotr/gopsuinfo";
license = licenses.bsd2;
maintainers = with maintainers; [ otini ];
2022-08-18 16:33:06 +00:00
platforms = platforms.linux;
2023-11-27 01:17:53 +00:00
mainProgram = "gopsuinfo";
2022-08-10 11:44:04 +00:00
};
}