1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 hash = "sha256-zyzzYftoMNPHvCtGYsxEiiWXd3vjWTfmiIpEJ86ac9c=";
14 cargoHash = "sha256-qkYvgKTT4wdYBRTwtDiHYCEBtbNjr6CWQB2y/kL0f8Y=";
17 description = "A CLI tool that allow you to create a temporary new Rust project using cargo with already installed dependencies";
18 mainProgram = "cargo-temp";
19 homepage = "https://github.com/yozhgoor/cargo-temp";
20 changelog = "https://github.com/yozhgoor/cargo-temp/releases/tag/${src.rev}";
21 license = with licenses; [ mit /* or */ asl20 ];
22 maintainers = with maintainers; [ figsoda matthiasbeyer ];