mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 19:24:20 +00:00
Merge pull request #213293 from wykurz/rustfilt-init-0.2.1
rustfilt: init at 0.2.1
This commit is contained in:
commit
0d9abb0d7f
26
pkgs/development/tools/rust/rustfilt/default.nix
Normal file
26
pkgs/development/tools/rust/rustfilt/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rustfilt";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "luser";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-zb1tkeWmeMq7aM8hWssS/UpvGzGbfsaVYCOKBnAKwiQ=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-rs2EWcvTxLVeJ0t+jLM75s+K72t+hqKzwy3oAdCZ8BE=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Demangle Rust symbol names using rustc-demangle";
|
||||
homepage = "https://github.com/luser/rustfilt";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ wykurz ];
|
||||
mainProgram = "rustfilt";
|
||||
};
|
||||
}
|
@ -11513,6 +11513,8 @@ with pkgs;
|
||||
|
||||
rustdesk = callPackage ../applications/networking/remote/rustdesk { };
|
||||
|
||||
rustfilt = callPackage ../development/tools/rust/rustfilt { };
|
||||
|
||||
rustscan = callPackage ../tools/security/rustscan {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user