diff --git a/pkgs/development/tools/pnpm/generic.nix b/pkgs/development/tools/pnpm/generic.nix index 1c6c1dfec6d3..0eb8467a4274 100644 --- a/pkgs/development/tools/pnpm/generic.nix +++ b/pkgs/development/tools/pnpm/generic.nix @@ -77,16 +77,16 @@ stdenvNoCC.mkDerivation (finalAttrs: { ); }; - meta = with lib; { + meta = { description = "Fast, disk space efficient package manager for JavaScript"; homepage = "https://pnpm.io/"; changelog = "https://github.com/pnpm/pnpm/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ Scrumplex gepbird ]; - platforms = platforms.all; + platforms = lib.platforms.all; mainProgram = "pnpm"; }; })