rs-reticulum: init at 0.9.4

This commit is contained in:
Pol Dellaiera
2026-06-07 19:32:05 +02:00
parent ce1c0c2853
commit 20a60dd04c
+50
View File
@@ -0,0 +1,50 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
bzip2,
dbus,
python3,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rs-reticulum";
version = "0.9.4";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "ratspeak";
repo = "rsReticulum";
tag = "v${finalAttrs.version}";
hash = "sha256-9+Xn3fXcH+iTKh+SRh2CHLoK5N9Aqmk5cSXLQEmUYB0=";
};
cargoHash = "sha256-uBYYK8RQ2+D51xUM51TY9K7WbYiw5oNaNouKn610YH0=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
bzip2
dbus
];
nativeCheckInputs = [
python3
];
__darwinAllowLocalNetworking = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Rust implementation of the Reticulum networking stack";
homepage = "https://github.com/ratspeak/rsReticulum";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "rs-reticulum";
};
})