2021-01-11 19:41:57 +00:00
|
|
|
{ lib
|
2021-01-04 07:51:06 +00:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-01-20 21:34:34 +00:00
|
|
|
, 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
|
|
|
|
2021-01-16 02:57:38 +00:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/dundee/gdu/build.Version=${version}" ];
|
2021-01-05 07:14:46 +00:00
|
|
|
|
2021-01-20 21:34:34 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage gdu.1
|
|
|
|
'';
|
|
|
|
|
2021-01-16 02:57:38 +00:00
|
|
|
# tests fail if the version is set
|
|
|
|
doCheck = false;
|
2021-01-11 19:41:57 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|