2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
2018-04-18 21:11:28 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "dust-${version}";
|
|
|
|
version = "0.2.3";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bootandy";
|
|
|
|
repo = "dust";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1l8z1daiq2x92449p2ciblcwl0ddgr3vqj2dsd3z8jj3y0z8j51s";
|
|
|
|
};
|
|
|
|
|
2019-05-25 12:03:08 +01:00
|
|
|
cargoSha256 = "1bby08ijpwb8676pgm87k80s0n0fqsxc3wmz0v8p9s85yzkflnx5";
|
2018-04-18 21:11:28 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "du + rust = dust. Like du but more intuitive";
|
|
|
|
homepage = https://github.com/bootandy/dust;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.infinisil ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|