Merge pull request #63656 from killercup/dua-2.1.3

dua: init at 2.1.5
This commit is contained in:
Aaron Andersen 2019-07-03 07:03:12 -04:00 committed by GitHub
commit 04c57357b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View file

@ -2623,6 +2623,11 @@
github = "kierdavis";
name = "Kier Davis";
};
killercup = {
email = "killercup@gmail.com";
github = "killercup";
name = "Pascal Hertleif";
};
kiloreux = {
email = "kiloreux@gmail.com";
github = "kiloreux";

View file

@ -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;
};
}

View file

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