52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gdu";
|
|
version = "5.12.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dundee";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pXHMNyebUkHEZvUWtDkyp5Fqk07GA5sd+254fls8PjU=";
|
|
};
|
|
|
|
vendorSha256 = "0ls0pw1m6hy203cdkmp9847h2fmvc4hjkv5x2v6r7516cqbs25ac";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/dundee/gdu/v${lib.versions.major version}/build.Version=${version}"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace cmd/gdu/app/app_test.go --replace "development" "${version}"
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage gdu.1
|
|
'';
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|