rgl: init at 0.17.0 (#469914)

This commit is contained in:
Sandro
2026-01-03 01:54:52 +00:00
committed by GitHub
+40
View File
@@ -0,0 +1,40 @@
{
lib,
fetchFromGitHub,
rustPlatform,
nix-update-script,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rgl";
version = "0.17.0";
src = fetchFromGitHub {
owner = "ink0rr";
repo = "rgl";
tag = "v${finalAttrs.version}";
hash = "sha256-kucD1FosCV2dxhLzxpOv/HvsqddH3NiAEVkqGTWTmGE=";
};
cargoHash = "sha256-/BeT18tIucgq1b5js+7QX0d1OyF5drNWMAFtv+g/XtM=";
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Add-on Compiler for the Bedrock Edition of Minecraft";
homepage = "https://github.com/ink0rr/rgl";
changelog = "https://github.com/ink0rr/rgl/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [
unfree
mit
];
mainProgram = "rgl";
platforms = lib.platforms.unix ++ lib.platforms.windows;
maintainers = with lib.maintainers; [ eveeifyeve ];
};
})