dua: init at 2.1.5

> A tool to conveniently learn about the disk usage of directories, fast!
wip/yesman
Pascal Hertleif 5 years ago committed by Pascal Hertleif
parent 8e9851ff5c
commit b8b0dac23c
  1. 23
      pkgs/tools/misc/dua/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "dua";
version = "2.1.5";
src = fetchFromGitHub {
owner = "Byron";
repo = "dua-cli";
rev = "v${version}";
sha256 = "0xiprpk74l0q5w3j82lx1l3jy4mi015nvlixih9z1lam4qi1yq0p";
};
cargoSha256 = "1jg1ljm5h21shkyfrq0ivz9m0c25dxc0kd6cipf5i2dbnzcszmhh";
meta = with lib; {
description = "A tool to conveniently learn about the disk usage of directories, fast!";
homepage = "https://github.com/Byron/dua-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ killercup ];
platforms = platforms.all;
};
}

@ -1453,6 +1453,8 @@ in
dtrx = callPackage ../tools/compression/dtrx { };
dua = callPackage ../tools/misc/dua { };
inherit (ocamlPackages) dune;
duperemove = callPackage ../tools/filesystems/duperemove { };

Loading…
Cancel
Save