2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }:
|
2020-01-08 12:12:59 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-cache";
|
2021-05-17 09:57:23 +00:00
|
|
|
version = "0.6.2";
|
2020-01-08 12:12:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matthiaskrgr";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-05-17 09:57:23 +00:00
|
|
|
sha256 = "sha256-/xP6TQcLyY1XC8r5SCkwej/I6fMaV5PqNNuvK1WbmeM=";
|
2020-01-08 12:12:59 +00:00
|
|
|
};
|
|
|
|
|
2021-05-17 09:57:23 +00:00
|
|
|
cargoSha256 = "sha256-1ZNbqydRsXmMGLhqPrgNAE8bhpZCMAJO/YQbOvtiS/s=";
|
2020-01-08 12:12:59 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2020-01-08 12:12:59 +00:00
|
|
|
|
|
|
|
checkFlagsArray = [ "offline_tests" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-01-08 12:12:59 +00:00
|
|
|
description = "Manage cargo cache (\${CARGO_HOME}, ~/.cargo/), print sizes of dirs and remove dirs selectively";
|
|
|
|
homepage = "https://github.com/matthiaskrgr/cargo-cache";
|
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
2020-01-08 12:12:59 +00:00
|
|
|
};
|
|
|
|
}
|