From 1f4b266f2aae7799f0b1bdd19f91def607ef329a Mon Sep 17 00:00:00 2001 From: Mikael Voss Date: Tue, 11 Feb 2025 12:11:58 +0100 Subject: [PATCH] akkoma-emoji.blobs_gg: remove use of with lib; --- pkgs/servers/akkoma/emoji/blobs_gg.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/akkoma/emoji/blobs_gg.nix b/pkgs/servers/akkoma/emoji/blobs_gg.nix index 39522f22b1e8..19e429ebf54f 100644 --- a/pkgs/servers/akkoma/emoji/blobs_gg.nix +++ b/pkgs/servers/akkoma/emoji/blobs_gg.nix @@ -30,10 +30,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { description = "Blob emoji from blobs.gg repacked as APNG"; homepage = "https://blobs.gg"; - license = licenses.asl20; - maintainers = with maintainers; [ mvs ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ mvs ]; }; }