chore(packages): Add missing meta attributes

This commit is contained in:
Donovan Glover 2024-04-16 19:50:54 -04:00
parent 9f10d795c7
commit 74f0e33d19
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
5 changed files with 23 additions and 12 deletions

View File

@ -23,10 +23,10 @@ stdenvNoCC.mkDerivation {
'';
meta = with lib; {
homepage = "https://github.com/AlessioLaiso/aleo";
description = "Slab serif typeface designed by Alessio Laiso";
platforms = platforms.all;
maintainers = with maintainers; [ donovanglover ];
homepage = "https://github.com/AlessioLaiso/aleo";
license = licenses.ofl;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.all;
};
}

View File

@ -1,4 +1,5 @@
{ stdenvNoCC
{ lib
, stdenvNoCC
, fetchzip
}:
@ -21,8 +22,11 @@ stdenvNoCC.mkDerivation {
runHook postInstall
'';
meta = {
homepage = "https://github.com/vinceliuice/Fluent-icon-theme";
meta = with lib; {
description = "Fluent folder icons converted to png";
homepage = "https://github.com/vinceliuice/Fluent-icon-theme";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.all;
};
}

View File

@ -29,9 +29,10 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [ hyprland ] ++ hyprland.buildInputs;
meta = with lib; {
homepage = "https://github.com/Ayuei/hycov";
description = "Clients overview for hyprland plugin";
homepage = "https://github.com/Ayuei/hycov";
license = licenses.mit;
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.linux;
};
})

View File

@ -1,4 +1,5 @@
{ stdenvNoCC
{ lib
, stdenvNoCC
, fetchzip
}:
@ -213,8 +214,10 @@ stdenvNoCC.mkDerivation {
runHook postInstall
'';
meta = {
homepage = "https://osu.ppy.sh/home/news";
meta = with lib; {
description = "A collection of osu! fanart entries since 2017";
homepage = "https://osu.ppy.sh/home/news";
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.all;
};
}

View File

@ -1,4 +1,5 @@
{ stdenvNoCC
{ lib
, stdenvNoCC
, libwebp
}:
@ -16,8 +17,10 @@ stdenvNoCC.mkDerivation {
echo "MimeType=image/x-webp;image/webp;" >> $out/share/thumbnailers/webp.thumbnailer
'';
meta = {
meta = with lib; {
homepage = "https://github.com/liquuid/nautilus-webp-thumbnailer";
description = "Create thumbnails from webp files";
maintainers = with maintainers; [ donovanglover ];
platforms = platforms.linux;
};
}