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