Fabian Affolter
2025-03-15 08:08:56 +01:00
parent 3b4431173a
commit ce57ceaf64
+7 -5
View File
@@ -8,19 +8,21 @@
rustPlatform.buildRustPackage rec {
pname = "ares-rs";
version = "0.10.0";
version = "0.11.0";
src = fetchFromGitHub {
owner = "bee-san";
repo = "ares";
tag = "v${version}";
hash = "sha256-J+q7KeBthF9Wd08MNv0aHyLHgLUKg3mzQ8ic6+ashto=";
tag = version;
hash = "sha256-IsIastLIrPknaJcH8sb0plPme+VGvo9DeDIisTD4sRM=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-K4qAUEVdi7OqpKAxyEMnKkGTuxSjrdE+UQaYosnUo70=";
cargoHash = "sha256-3L1LpmH96rYFB947sEhZcDK5g97zUgr2runjc1EYzZk=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
env = {
@@ -30,7 +32,7 @@ rustPlatform.buildRustPackage rec {
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}";
changelog = "https://github.com/bee-san/Ares/releases/tag/v${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "ares";