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

53 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2021-05-19 10:41:55 +03:00
, stdenv
2021-01-04 10:51:06 +03:00
, buildGoModule
, fetchFromGitHub
, installShellFiles
2021-01-04 10:51:06 +03:00
}:
buildGoModule rec {
pname = "gdu";
version = "5.1.1";
2021-01-04 10:51:06 +03:00
src = fetchFromGitHub {
owner = "dundee";
repo = pname;
rev = "v${version}";
sha256 = "sha256-9o/njurf1AWt04A8u38FMFcteLZlRHDejbH9+ekDjKI=";
2021-01-04 10:51:06 +03:00
};
2021-06-08 06:40:51 +03:00
vendorSha256 = "sha256-9W1K01PJ+tRLSJ0L7NGHXT5w5oHmlBkT8kwnOLOzSCc=";
nativeBuildInputs = [ installShellFiles ];
buildFlagsArray = [
"-ldflags="
"-s"
"-w"
"-X github.com/dundee/gdu/v${lib.versions.major version}/build.Version=${version}"
];
postPatch = ''
2021-05-19 10:41:55 +03:00
substituteInPlace cmd/gdu/app/app_test.go --replace "development" "${version}"
'';
postInstall = ''
installManPage gdu.1
'';
doCheck = !stdenv.isDarwin;
meta = with lib; {
2021-01-04 10:51:06 +03: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;
};
}