leviculum: init at 0.6.0 (#531781)

This commit is contained in:
Pol Dellaiera
2026-06-15 05:58:40 +00:00
committed by GitHub
+53
View File
@@ -0,0 +1,53 @@
{
lib,
rustPlatform,
fetchFromGitea,
pkg-config,
udev,
gitMinimal,
writableTmpDirAsHomeHook,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "leviculum";
version = "0.6.0";
__structuredAttrs = true;
src = fetchFromGitea {
domain = "codeberg.org";
owner = "Lew_Palm";
repo = "leviculum";
tag = "v${finalAttrs.version}";
fetchSubmodules = false;
hash = "sha256-pNCTWIGVr0tHrqpisJbAEAyQUW1/mKexu6K+LZ9PWZ4=";
};
cargoHash = "sha256-pGORaIcRRkJKKcyFnt8Fu9wmhWREwH6Cs8KvlEas/NQ=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
udev
];
# Most of the tests are failing, I couldn't figure out how to fix them, so I disable them for now.
doCheck = false;
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgram = "${placeholder "out"}/bin/lnsd";
passthru.updateScript = nix-update-script { };
meta = {
description = "Full Rust implementation of the Reticulum network stack, for embedded, server, desktop and mobile";
homepage = "https://codeberg.org/Lew_Palm/leviculum";
changelog = "https://codeberg.org/Lew_Palm/leviculum/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ drupol ];
};
})