Fabian Affolter
2024-09-24 21:25:49 +02:00
parent b7643ddc3b
commit cd6f445a71
+8 -7
View File
@@ -1,25 +1,26 @@
{ lib {
, rustPlatform lib,
, fetchFromGitHub rustPlatform,
fetchFromGitHub,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ares-rs"; pname = "ares-rs";
version = "0.9.0"; version = "0.10.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bee-san"; owner = "bee-san";
repo = "ares"; repo = "ares";
rev = "refs/tags/${version}"; rev = "refs/tags/v${version}";
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug="; hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
}; };
cargoHash = "sha256-7zDq66oWT+j6t9LEBUoeby8MQ1Ihhvk3KLwWPQAThyc="; cargoHash = "sha256-c50HCwWwW4Fyg6hC1JqBfKtwq6kgReSOIBYXvwm04yA=";
meta = with lib; { meta = with lib; {
description = "Automated decoding of encrypted text without knowing the key or ciphers used"; description = "Automated decoding of encrypted text without knowing the key or ciphers used";
homepage = "https://github.com/bee-san/ares"; homepage = "https://github.com/bee-san/ares";
changelog = "https://github.com/bee-san/Ares/releases/tag${version}"; changelog = "https://github.com/bee-san/Ares/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "ares"; mainProgram = "ares";