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; }; })