tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
rustfilt: init at 0.2.1
Mateusz Wykurz
3 years ago
206eb29c
86d4ecda
+28
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
rust
rustfilt
default.nix
top-level
all-packages.nix
+26
pkgs/development/tools/rust/rustfilt/default.nix
···
1
1
+
{ lib
2
2
+
, fetchFromGitHub
3
3
+
, rustPlatform
4
4
+
}:
5
5
+
6
6
+
rustPlatform.buildRustPackage rec {
7
7
+
pname = "rustfilt";
8
8
+
version = "0.2.1";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "luser";
12
12
+
repo = pname;
13
13
+
rev = version;
14
14
+
hash = "sha256-zb1tkeWmeMq7aM8hWssS/UpvGzGbfsaVYCOKBnAKwiQ=";
15
15
+
};
16
16
+
17
17
+
cargoSha256 = "sha256-rs2EWcvTxLVeJ0t+jLM75s+K72t+hqKzwy3oAdCZ8BE=";
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "Demangle Rust symbol names using rustc-demangle";
21
21
+
homepage = "https://github.com/luser/rustfilt";
22
22
+
license = with licenses; [ asl20 ];
23
23
+
maintainers = with maintainers; [ wykurz ];
24
24
+
mainProgram = "rustfilt";
25
25
+
};
26
26
+
}
+2
pkgs/top-level/all-packages.nix
···
11513
11513
11514
11514
rustdesk = callPackage ../applications/networking/remote/rustdesk { };
11515
11515
11516
11516
+
rustfilt = callPackage ../development/tools/rust/rustfilt { };
11517
11517
+
11516
11518
rustscan = callPackage ../tools/security/rustscan {
11517
11519
inherit (darwin.apple_sdk.frameworks) Security;
11518
11520
};