2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
2018-04-18 21:11:28 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 12:41:23 +01:00
|
|
|
pname = "dust";
|
2019-11-03 09:20:00 +00:00
|
|
|
version = "0.4.1.2";
|
2018-04-18 21:11:28 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bootandy";
|
|
|
|
repo = "dust";
|
|
|
|
rev = "v${version}";
|
2019-11-03 09:20:00 +00:00
|
|
|
sha256 = "0a2n96p6z4y09l5z617qbpm8lgxvfagd1l950d2gz9xw4xf1ik5w";
|
2018-04-18 21:11:28 +01:00
|
|
|
};
|
|
|
|
|
2019-11-03 09:20:00 +00:00
|
|
|
cargoSha256 = "0cpgxkgz10na90r3fgz8hs20vihqdcc8983inn71fq90627bhdx7";
|
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;
|
|
|
|
};
|
|
|
|
}
|