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 ]; }; })