2021-01-11 11:41:57 -08:00
|
|
|
{ lib
|
2021-01-03 23:51:06 -08:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2021-01-20 13:34:34 -08:00
|
|
|
, installShellFiles
|
2021-01-03 23:51:06 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gdu";
|
2021-02-22 19:34:18 -08:00
|
|
|
version = "4.6.4";
|
2021-01-03 23:51:06 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dundee";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-02-22 19:34:18 -08:00
|
|
|
sha256 = "sha256-d7rUvRHijBoot6OKsKjASNoSbuE7YIGXbRsIRZG7CFQ=";
|
2021-01-03 23:51:06 -08:00
|
|
|
};
|
|
|
|
|
2021-02-22 19:34:18 -08:00
|
|
|
vendorSha256 = "sha256-QiO5p0x8kmIN6f0uYS0IR2MlWtRYTHeZpW6Nmupjias=";
|
2021-01-03 23:51:06 -08:00
|
|
|
|
2021-01-15 18:57:38 -08:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/dundee/gdu/build.Version=${version}" ];
|
2021-01-04 23:14:46 -08:00
|
|
|
|
2021-01-20 13:34:34 -08:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage gdu.1
|
|
|
|
'';
|
|
|
|
|
2021-01-15 18:57:38 -08:00
|
|
|
# tests fail if the version is set
|
|
|
|
doCheck = false;
|
2021-01-11 11:41:57 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2021-01-03 23:51:06 -08: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;
|
|
|
|
};
|
|
|
|
}
|