wasynth: remove with lib

This commit is contained in:
kyehn
2025-08-29 21:19:36 +08:00
parent c61b8d51a6
commit d71f80404d
+3 -3
View File
@@ -34,7 +34,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
extraArgs = [ "--generate-lockfile" ];
};
meta = with lib; {
meta = {
description = "WebAssembly translation tools for various languages";
longDescription = ''
Wasynth provides the following WebAssembly translation tools:
@@ -42,7 +42,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
* wasm2luau: translate WebAssembly Luau source code
'';
homepage = "https://github.com/Rerumu/Wasynth";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ wackbyte ];
license = with lib.licenses; [ gpl3Only ];
maintainers = with lib.maintainers; [ wackbyte ];
};
})