waypaper: avoid with lib;

This commit is contained in:
Sizhe Zhao 2025-05-17 23:15:22 +08:00
parent b685d78a3a
commit 11ac85f54c
No known key found for this signature in database
GPG key ID: ED1807251A7DA08F

View file

@ -46,7 +46,7 @@ python3Packages.buildPythonApplication rec {
makeWrapperArgs+=("''${gappsWrapperArgs[@]}") makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
''; '';
meta = with lib; { meta = {
changelog = "https://github.com/anufrievroman/waypaper/releases/tag/${version}"; changelog = "https://github.com/anufrievroman/waypaper/releases/tag/${version}";
description = "GUI wallpaper setter for Wayland-based window managers"; description = "GUI wallpaper setter for Wayland-based window managers";
mainProgram = "waypaper"; mainProgram = "waypaper";
@ -56,11 +56,11 @@ python3Packages.buildPythonApplication rec {
If wallpaper does not change, make sure that swaybg or swww is installed. If wallpaper does not change, make sure that swaybg or swww is installed.
''; '';
homepage = "https://github.com/anufrievroman/waypaper"; homepage = "https://github.com/anufrievroman/waypaper";
license = licenses.gpl3Only; license = lib.licenses.gpl3Only;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
prince213 prince213
totalchaos totalchaos
]; ];
platforms = platforms.linux; platforms = lib.platforms.linux;
}; };
} }