lol
1{ lib, rustPlatform, fetchFromGitHub }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "cargo-auditable";
5 version = "0.5.4";
6
7 src = fetchFromGitHub {
8 owner = "rust-secure-code";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-udn/Z+raf/fkJ5M/FSH9Au+J9ASu0rz6ZJSl8P+jLT4=";
12 };
13
14 cargoSha256 = "sha256-k3wWdlLYGZZ44IHatXWq8TK2xCia3YES2jX286QkNH0=";
15
16 meta = with lib; {
17 description = "A tool to make production Rust binaries auditable";
18 homepage = "https://github.com/rust-secure-code/cargo-auditable";
19 license = with licenses; [ mit /* or */ asl20 ];
20 maintainers = with maintainers; [ figsoda ];
21 };
22}