blob: c54e593c509531354984014bd304d773f9724a65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
lib,
rustPlatform,
fetchFromGitHub,
}:
let
buildRustPackage = import ../lib/build-rust-package.nix {
inherit lib rustPlatform fetchFromGitHub;
};
in
buildRustPackage (
with lib;
{
pname = "cargo-clean-all";
version = "21b0d4a451629f1f9073dbab8b32a6de85b33f75";
githubOwner = "dnlmlr";
githubHash = "sha256-rNwAzpBUAFDt6SpVi1htAMTB7TUD4YqpxJkd3hYCPAQ=";
cargoHash = "sha256-/2wCKAmYYKMYe6V6Y1DPfaE+/WuhFs9zX4+B2OtxGBc=";
license = licenses.mit;
maintainers = [ maintainers.Fuwn ];
}
)
|