Unverified Commit 309bf858 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #219764 from fabaff/ares

ares-rs: init at 0.9.0
parents 34ef1ddd 1fc18708
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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;
  };