nixpkgs/pkgs/by-name/ar/ares-rs/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
724 B
Nix
Raw Normal View History

{
lib,
rustPlatform,
fetchFromGitHub,
2023-03-05 23:16:48 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "ares-rs";
version = "0.10.0";
2023-03-05 23:16:48 +00:00
src = fetchFromGitHub {
owner = "bee-san";
repo = "ares";
rev = "refs/tags/v${version}";
2023-03-05 23:16:48 +00:00
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
};
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";
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";
};
}