From 9fe386e214b2c030f711f3632316f5a1c51f3073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Sun, 26 Nov 2023 11:09:17 -0500 Subject: [PATCH] fnott: remove `with lib;` --- pkgs/applications/misc/fnott/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/fnott/default.nix b/pkgs/applications/misc/fnott/default.nix index c54bd435526b..e170e3c524b1 100644 --- a/pkgs/applications/misc/fnott/default.nix +++ b/pkgs/applications/misc/fnott/default.nix @@ -51,12 +51,12 @@ stdenv.mkDerivation rec { fcft ]; - meta = with lib; { + meta = { homepage = "https://codeberg.org/dnkl/fnott"; description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors"; - license = with licenses; [ mit zlib ]; - maintainers = with maintainers; [ polykernel ]; + license = with lib.licenses; [ mit zlib ]; + maintainers = with lib.maintainers; [ polykernel ]; mainProgram = "fnott"; - platforms = platforms.linux; + platforms = lib.platforms.linux; }; }