nixpkgs/pkgs/tools/misc/btdu/default.nix

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

43 lines
858 B
Nix
Raw Normal View History

2024-03-30 11:23:35 +00:00
{
lib,
buildDubPackage,
fetchFromGitHub,
ncurses,
zlib,
2023-01-07 22:18:24 +00:00
}:
2022-02-06 14:59:38 +00:00
2024-03-30 11:23:35 +00:00
buildDubPackage rec {
pname = "btdu";
version = "0.5.1";
src = fetchFromGitHub {
owner = "CyberShadow";
repo = "btdu";
rev = "v${version}";
hash = "sha256-3sSZq+5UJH02IO0Y1yL3BLHDb4lk8k6awb5ZysBQciE=";
};
dubLock = ./dub-lock.json;
buildInputs = [
ncurses
zlib
];
installPhase = ''
runHook preInstall
install -Dm755 btdu -t $out/bin
runHook postInstall
'';
meta = with lib; {
description = "Sampling disk usage profiler for btrfs";
homepage = "https://github.com/CyberShadow/btdu";
changelog = "https://github.com/CyberShadow/btdu/releases/tag/${src.rev}";
license = licenses.gpl2Only;
platforms = platforms.linux;
2024-04-06 08:25:38 +00:00
maintainers = with maintainers; [ atila cybershadow ];
2024-03-30 11:23:35 +00:00
mainProgram = "btdu";
};
2022-02-06 14:59:38 +00:00
}