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-01-29 11:22:53 +00:00
|
|
|
version = "0.6.1";
|
2020-01-08 12:12:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matthiaskrgr";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-01-29 11:22:53 +00:00
|
|
|
sha256 = "sha256-qRwyNSAYuAnU17o/5zqKuvixQw7xfA6wNVzN6QRbZlY=";
|
2020-01-08 12:12:59 +00:00
|
|
|
};
|
|
|
|
|
2021-01-29 11:22:53 +00:00
|
|
|
cargoSha256 = "sha256-OpqVP097GYiARq7gbsMGFFGkFaQz3qeux12aMJj7W3Y=";
|
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
|
|
|
};
|
|
|
|
}
|