From d44cf28a95922338ef59445fc82dc145e9bfd7dd Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 14 Oct 2025 11:16:52 +0200 Subject: [PATCH] pnmixer: remove 'with lib' --- pkgs/by-name/pn/pnmixer/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/pn/pnmixer/package.nix b/pkgs/by-name/pn/pnmixer/package.nix index a8f50dc158bc..83299045eaf6 100644 --- a/pkgs/by-name/pn/pnmixer/package.nix +++ b/pkgs/by-name/pn/pnmixer/package.nix @@ -44,15 +44,15 @@ stdenv.mkDerivation (finalAttrs: { pcre ]; - meta = with lib; { + meta = { homepage = "https://github.com/nicklan/pnmixer"; description = "ALSA volume mixer for the system tray"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ campadrenalin romildo ]; mainProgram = "pnmixer"; }; -} +})