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

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

67 lines
1.5 KiB
Nix
Raw Normal View History

2024-04-21 13:52:41 +00:00
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
installShellFiles,
testers,
gdu,
2021-01-04 07:51:06 +00:00
}:
buildGoModule rec {
pname = "gdu";
version = "5.29.0";
2021-01-04 07:51:06 +00:00
src = fetchFromGitHub {
owner = "dundee";
2024-02-18 16:28:53 +00:00
repo = "gdu";
2023-01-07 22:35:14 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-w48I7HU/pA53Pq6ZVwtby+YvFddVUjj8orL40Gifqoo=";
2021-01-04 07:51:06 +00:00
};
vendorHash = "sha256-aKhHC3sPRyi/l9BxeUgx+3TdYulb0cI9WxuPvbLoswg=";
2024-04-21 13:52:41 +00:00
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s"
"-w"
2024-02-18 16:28:53 +00:00
"-X=github.com/dundee/gdu/v${lib.versions.major version}/build.Version=${version}"
];
postPatch = ''
2024-02-18 16:28:53 +00:00
substituteInPlace cmd/gdu/app/app_test.go \
--replace-fail "development" "${version}"
'';
postInstall = ''
installManPage gdu.1
'';
doCheck = !stdenv.isDarwin;
checkFlags = [
# https://github.com/dundee/gdu/issues/371
"-skip=TestStoredAnalyzer"
];
2024-04-21 13:52:41 +00:00
passthru.tests.version = testers.testVersion { package = gdu; };
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";
2023-01-07 22:35:14 +00:00
changelog = "https://github.com/dundee/gdu/releases/tag/v${version}";
2021-01-04 07:51:06 +00:00
license = with licenses; [ mit ];
2024-04-21 13:52:41 +00:00
maintainers = with maintainers; [
fab
zowoq
];
2023-11-27 01:17:53 +00:00
mainProgram = "gdu";
2021-01-04 07:51:06 +00:00
};
}