1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 hash = "sha256-nfkFrNVt5DmYiy/V9rztJjDU07lGw7QwXR6NDYW9Jc0=";
14 cargoHash = "sha256-x3DqU1KGKwfazCl305SmLWi/yUhPOkWcL0Z67FPdY8Y=";
17 description = "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 ];