From d71f80404d4ae3df3b4035a8a6452330c30e3ada Mon Sep 17 00:00:00 2001 From: kyehn Date: Fri, 29 Aug 2025 21:19:36 +0800 Subject: [PATCH] wasynth: remove with lib --- pkgs/by-name/wa/wasynth/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wa/wasynth/package.nix b/pkgs/by-name/wa/wasynth/package.nix index fad7daa3a029..402784849f38 100644 --- a/pkgs/by-name/wa/wasynth/package.nix +++ b/pkgs/by-name/wa/wasynth/package.nix @@ -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 ]; }; })