From 26829ce5f3c65e3bbf4218a8eab8ef7968a53cf1 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 5 Feb 2026 15:42:57 -0500 Subject: [PATCH] phantom: remove meta = with lib; Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/ph/phantom/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ph/phantom/package.nix b/pkgs/by-name/ph/phantom/package.nix index 75325e55c0dd..ecb6a120f06b 100644 --- a/pkgs/by-name/ph/phantom/package.nix +++ b/pkgs/by-name/ph/phantom/package.nix @@ -41,12 +41,12 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Markdown editor with support for multi-tab"; homepage = "https://codeberg.org/ItsZariep/Phantom"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; mainProgram = "phantom"; - platforms = platforms.all; - maintainers = with maintainers; [ reylak ]; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ reylak ]; }; }