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

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

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, rustPlatform, AppKit, installShellFiles }:
2018-04-18 20:11:28 +00:00
rustPlatform.buildRustPackage rec {
pname = "du-dust";
2024-01-10 01:31:16 +00:00
version = "0.9.0";
2018-04-18 20:11:28 +00:00
src = fetchFromGitHub {
owner = "bootandy";
repo = "dust";
rev = "v${version}";
2024-01-10 01:31:16 +00:00
sha256 = "sha256-5X7gRMTUrG6ecZnwExBTadOJo/HByohTMDsgxFmp1HM=";
2020-02-19 23:18:18 +00:00
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
2022-05-17 19:10:33 +00:00
postFetch = ''
2021-02-12 03:22:05 +00:00
rm -r $out/tests/test_dir_unicode/
2020-02-19 23:18:18 +00:00
'';
2018-04-18 20:11:28 +00:00
};
2024-01-10 01:31:16 +00:00
cargoHash = "sha256-uc7jbA8HqsH1bSJgbnUVT/f7F7kZJ4Jf3yyFvseH7no=";
2022-09-01 10:55:50 +00:00
nativeBuildInputs = [ installShellFiles ];
2022-09-01 10:55:50 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ AppKit ];
2018-04-18 20:11:28 +00:00
doCheck = false;
postInstall = ''
installManPage man-page/dust.1
installShellCompletion completions/dust.{bash,fish} --zsh completions/_dust
'';
meta = with lib; {
2018-04-18 20:11:28 +00:00
description = "du + rust = dust. Like du but more intuitive";
2020-02-19 23:18:18 +00:00
homepage = "https://github.com/bootandy/dust";
2018-04-18 20:11:28 +00:00
license = licenses.asl20;
2023-07-23 17:30:22 +00:00
maintainers = with maintainers; [ infinisil ];
2021-07-18 13:24:03 +00:00
mainProgram = "dust";
2018-04-18 20:11:28 +00:00
};
}