{ lib , stdenv , rustPlatform , fetchFromGitHub , libiconv }: rustPlatform.buildRustPackage rec { pname = "cargo-expand"; version = "1.0.35"; src = fetchFromGitHub { owner = "dtolnay"; repo = pname; rev = version; sha256 = "sha256-hJb4FLL3+AMNLL05eQc7Mkhp0KEGxmHg8/ETDoZiLV4="; }; cargoSha256 = "sha256-wKVlmO2/ugAb7vUSIGMz0WGnjEVEsm459DV9FaM28Mk="; buildInputs = lib.optional stdenv.isDarwin libiconv; meta = with lib; { description = "A utility and Cargo subcommand designed to let people expand macros in their Rust source code"; homepage = "https://github.com/dtolnay/cargo-expand"; license = with licenses; [ mit asl20 ]; maintainers = with maintainers; [ xrelkd ]; }; }