From 84ed3ffdce6de17ae7f89fbeb505ad4782140415 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Wed, 21 May 2025 16:37:33 +0800 Subject: [PATCH] chafa: avoid with lib; --- pkgs/by-name/ch/chafa/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ch/chafa/package.nix b/pkgs/by-name/ch/chafa/package.nix index 326afa37a5db..ccd373d6d867 100644 --- a/pkgs/by-name/ch/chafa/package.nix +++ b/pkgs/by-name/ch/chafa/package.nix @@ -72,12 +72,12 @@ stdenv.mkDerivation rec { installShellCompletion --cmd chafa tools/completions/zsh-completion.zsh ''; - meta = with lib; { + meta = { description = "Terminal graphics for the 21st century"; homepage = "https://hpjansson.org/chafa/"; - license = licenses.lgpl3Plus; - platforms = platforms.all; - maintainers = with maintainers; [ + license = lib.licenses.lgpl3Plus; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mog prince213 ];