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

44 lines
1.0 KiB
Nix
Raw Normal View History

{ lib
2021-01-04 07:51:06 +00:00
, buildGoModule
, fetchFromGitHub
, installShellFiles
2021-01-04 07:51:06 +00:00
}:
buildGoModule rec {
pname = "gdu";
2021-02-18 08:27:29 +00:00
version = "4.6.2";
2021-01-04 07:51:06 +00:00
src = fetchFromGitHub {
owner = "dundee";
repo = pname;
rev = "v${version}";
2021-02-18 08:27:29 +00:00
sha256 = "sha256-q26NnHSnJ8vVWHwXtFJ90/8xr772x/gW6BRG29wsIeI=";
2021-01-04 07:51:06 +00:00
};
2021-01-29 02:34:30 +00:00
vendorSha256 = "sha256-kIMd0xzQ+c+jCpX2+qdD/GcFEirR15PMInbEV184EBU=";
2021-01-04 07:51:06 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X github.com/dundee/gdu/build.Version=${version}" ];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installManPage gdu.1
'';
# tests fail if the version is set
doCheck = false;
meta = with lib; {
2021-01-04 07:51:06 +00:00
description = "Disk usage analyzer with console interface";
longDescription = ''
Gdu is intended primarily for SSD disks where it can fully
utilize parallel processing. However HDDs work as well, but
the performance gain is not so huge.
'';
homepage = "https://github.com/dundee/gdu";
license = with licenses; [ mit ];
maintainers = [ maintainers.fab ];
platforms = platforms.unix;
};
}