7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
28 lines
724 B
Nix
28 lines
724 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ares-rs";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bee-san";
|
|
repo = "ares";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
|
|
};
|
|
|
|
cargoHash = "sha256-c50HCwWwW4Fyg6hC1JqBfKtwq6kgReSOIBYXvwm04yA=";
|
|
|
|
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/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "ares";
|
|
};
|
|
}
|