From e33b3db86050308043c6d76a079fdf73212d3e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gutyina=20Gerg=C5=91?= Date: Sat, 30 Nov 2024 18:30:56 +0100 Subject: [PATCH] dunst: remove `with lib;` and order `meta` attrs --- pkgs/by-name/du/dunst/package.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/du/dunst/package.nix b/pkgs/by-name/du/dunst/package.nix index 1b0de91e263d..a11af25ca81f 100644 --- a/pkgs/by-name/du/dunst/package.nix +++ b/pkgs/by-name/du/dunst/package.nix @@ -109,16 +109,16 @@ stdenv.mkDerivation (finalAttrs: { updateScript = nix-update-script { }; }; - meta = with lib; { + meta = { description = "Lightweight and customizable notification daemon"; homepage = "https://dunst-project.org/"; - license = licenses.bsd3; - # NOTE: 'unix' or even 'all' COULD work too, I'm not sure - platforms = platforms.linux; - maintainers = with maintainers; [ + license = lib.licenses.bsd3; + mainProgram = "dunst"; + maintainers = with lib.maintainers; [ domenkozar gepbird ]; - mainProgram = "dunst"; + # NOTE: 'unix' or even 'all' COULD work too, I'm not sure + platforms = lib.platforms.linux; }; })