packages(stylix-background): Add missing meta attributes

This commit is contained in:
Donovan Glover 2024-09-02 11:03:35 -04:00
parent 29f8b0bd56
commit 4c301830d5
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,4 +1,5 @@
{
lib,
stdenvNoCC,
imagemagick,
color ? "181818",
@ -16,4 +17,12 @@ stdenvNoCC.mkDerivation {
mkdir -p $out
magick -size 1x1 xc:#${color} $out/wallpaper.png
'';
meta = {
description = "Solid background color for stylix to use";
license = lib.licenses.publicDomain;
homepage = "https://stackoverflow.com/questions/7771975/imagemagick-create-a-png-file-which-is-just-a-solid-rectangle";
maintainers = with lib.maintainers; [ donovanglover ];
platforms = lib.platforms.all;
};
}