rs-reticulum: 1.0.0 -> 1.0.1 (#531594)

This commit is contained in:
Pol Dellaiera
2026-06-14 12:00:39 +00:00
committed by GitHub
+14 -4
View File
@@ -1,27 +1,29 @@
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
pkg-config,
bzip2,
dbus,
python3,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rs-reticulum";
version = "1.0.0";
version = "1.0.1";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "ratspeak";
repo = "rsReticulum";
tag = "v${finalAttrs.version}";
hash = "sha256-CoA+HOcMkwmo7WUhXCLIwx4hMqLHFQqu6d1NOz1N2PY=";
hash = "sha256-MSvIgB/E1Ce8M8vOaXlHQGYnxFf0lT2hg8g0tx6QY/w=";
};
cargoHash = "sha256-h8P2PuW3hiyQuvAHhat831dxBGSmV0rxDWB8lffZpac=";
cargoHash = "sha256-Kv3aVET69yI28muyaJop4YQEqOxNeyajK7j5J+jDhe0=";
nativeBuildInputs = [
pkg-config
@@ -38,6 +40,15 @@ rustPlatform.buildRustPackage (finalAttrs: {
__darwinAllowLocalNetworking = true;
checkFlags = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# Broken since 0.9.4
"--skip=actor::tests::test_rate_tracking"
];
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgram = "${placeholder "out"}/bin/rnid-rs";
passthru.updateScript = nix-update-script { };
meta = {
@@ -46,6 +57,5 @@ rustPlatform.buildRustPackage (finalAttrs: {
homepage = "https://github.com/ratspeak/rsReticulum";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "rs-reticulum";
};
})