mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
ares-rs: init at 0.9.0
This commit is contained in:
parent
710635f625
commit
1fc187089b
27
pkgs/tools/security/ares-rs/default.nix
Normal file
27
pkgs/tools/security/ares-rs/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ares-rs";
|
||||
version = "0.9.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bee-san";
|
||||
repo = "ares";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-7zDq66oWT+j6t9LEBUoeby8MQ1Ihhvk3KLwWPQAThyc=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Automated decoding of encrypted text without knowing the key or ciphers used";
|
||||
homepage = "https://github.com/bee-san/ares";
|
||||
changelog = "https://github.com/bee-san/Ares/releases/tag${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
mainProgram = "ares";
|
||||
};
|
||||
}
|
@ -290,6 +290,8 @@ with pkgs;
|
||||
|
||||
ansi = callPackage ../development/tools/ansi { };
|
||||
|
||||
ares-rs = callPackage ../tools/security/ares-rs { };
|
||||
|
||||
arti = callPackage ../tools/security/arti {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user