2024-09-24 19:25:41 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
2023-03-05 23:16:48 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ares-rs";
|
2024-09-24 19:25:41 +00:00
|
|
|
version = "0.10.0";
|
2023-03-05 23:16:48 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bee-san";
|
|
|
|
repo = "ares";
|
2024-09-24 19:25:41 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-03-05 23:16:48 +00:00
|
|
|
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
|
|
|
|
};
|
|
|
|
|
2024-09-24 19:25:41 +00:00
|
|
|
cargoHash = "sha256-c50HCwWwW4Fyg6hC1JqBfKtwq6kgReSOIBYXvwm04yA=";
|
2023-03-05 23:16:48 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automated decoding of encrypted text without knowing the key or ciphers used";
|
|
|
|
homepage = "https://github.com/bee-san/ares";
|
2024-09-24 19:25:41 +00:00
|
|
|
changelog = "https://github.com/bee-san/Ares/releases/tag/v${version}";
|
2023-03-05 23:16:48 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
mainProgram = "ares";
|
|
|
|
};
|
|
|
|
}
|