mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
packages(stylix-background): Add missing meta attributes
This commit is contained in:
parent
29f8b0bd56
commit
4c301830d5
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
lib,
|
||||||
stdenvNoCC,
|
stdenvNoCC,
|
||||||
imagemagick,
|
imagemagick,
|
||||||
color ? "181818",
|
color ? "181818",
|
||||||
@ -16,4 +17,12 @@ stdenvNoCC.mkDerivation {
|
|||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
magick -size 1x1 xc:#${color} $out/wallpaper.png
|
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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user