ares-rs: update hashes and fix build

The source hash was not updated during the most recent update.

Fixes: cd6f445a71 ("ares-rs: 0.9.0 -> 0.10.0")
This commit is contained in:
Alyssa Ross
2025-01-23 12:03:11 +01:00
parent 7081410b9a
commit 13e95c933d
+11 -2
View File
@@ -2,6 +2,8 @@
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
@@ -12,10 +14,17 @@ rustPlatform.buildRustPackage rec {
owner = "bee-san";
repo = "ares";
tag = "v${version}";
hash = "sha256-F+uBGRL1G8kiNZUCsiPbISBfId5BPwShenusqkcsHug=";
hash = "sha256-J+q7KeBthF9Wd08MNv0aHyLHgLUKg3mzQ8ic6+ashto=";
};
cargoHash = "sha256-c50HCwWwW4Fyg6hC1JqBfKtwq6kgReSOIBYXvwm04yA=";
cargoHash = "sha256-iJ04WPViqtafINkjn3PD8cE55LVdJZQXodAl3KlxweA=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
env = {
OPENSSL_NO_VENDOR = true;
};
meta = with lib; {
description = "Automated decoding of encrypted text without knowing the key or ciphers used";