rmux: init at 0.5.0

Universal multiplexer with a typed SDK

https://github.com/Helvesec/rmux
This commit is contained in:
Fabian Affolter
2026-06-07 11:33:06 +02:00
parent 5033b3f585
commit aeaee03e62
+42
View File
@@ -0,0 +1,42 @@
{
lib,
fetchFromGitHub,
installShellFiles,
nix-update-script,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rmux";
version = "0.5.0";
src = fetchFromGitHub {
owner = "Helvesec";
repo = "rmux";
tag = "v${finalAttrs.version}";
hash = "sha256-W4Jw2r+4x90+x5WkrRwxrlqytRlU4wEY98MWJZbcblY=";
};
__structuredAttrs = true;
cargoHash = "sha256-fu96A2v5VH01HxNGpdLpBTH3o9DHrocSyvuK14nE1fk=";
nativeBuildInputs = [ installShellFiles ];
passthru.updateScript = nix-update-script { };
# Tests require network access
doCheck = false;
meta = {
description = "Universal multiplexer with a typed SDK";
homepage = "https://github.com/Helvesec/rmux";
changelog = "https://github.com/Helvesec/rmux/releases/tag/${finalAttrs.src.tag}";
license = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ fab ];
mainProgram = "rmux";
};
})