lol

rustfilt: init at 0.2.1

+28
+26
pkgs/development/tools/rust/rustfilt/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , rustPlatform 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "rustfilt"; 8 + version = "0.2.1"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "luser"; 12 + repo = pname; 13 + rev = version; 14 + hash = "sha256-zb1tkeWmeMq7aM8hWssS/UpvGzGbfsaVYCOKBnAKwiQ="; 15 + }; 16 + 17 + cargoSha256 = "sha256-rs2EWcvTxLVeJ0t+jLM75s+K72t+hqKzwy3oAdCZ8BE="; 18 + 19 + meta = with lib; { 20 + description = "Demangle Rust symbol names using rustc-demangle"; 21 + homepage = "https://github.com/luser/rustfilt"; 22 + license = with licenses; [ asl20 ]; 23 + maintainers = with maintainers; [ wykurz ]; 24 + mainProgram = "rustfilt"; 25 + }; 26 + }
+2
pkgs/top-level/all-packages.nix
··· 11513 11513 11514 11514 rustdesk = callPackage ../applications/networking/remote/rustdesk { }; 11515 11515 11516 + rustfilt = callPackage ../development/tools/rust/rustfilt { }; 11517 + 11516 11518 rustscan = callPackage ../tools/security/rustscan { 11517 11519 inherit (darwin.apple_sdk.frameworks) Security; 11518 11520 };