diff --git a/packages/aleo-fonts.nix b/packages/aleo-fonts.nix index 8d1048af..4cda2c5b 100644 --- a/packages/aleo-fonts.nix +++ b/packages/aleo-fonts.nix @@ -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; }; } diff --git a/packages/fluent-icons.nix b/packages/fluent-icons.nix index 6d0d13f8..9e9426a4 100644 --- a/packages/fluent-icons.nix +++ b/packages/fluent-icons.nix @@ -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; }; } diff --git a/packages/hycov.nix b/packages/hycov.nix index 20a0a802..617d13cb 100644 --- a/packages/hycov.nix +++ b/packages/hycov.nix @@ -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; }; }) diff --git a/packages/osu-backgrounds.nix b/packages/osu-backgrounds.nix index 3a9437c9..6a012adb 100644 --- a/packages/osu-backgrounds.nix +++ b/packages/osu-backgrounds.nix @@ -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; }; } diff --git a/packages/webp-thumbnailer.nix b/packages/webp-thumbnailer.nix index dcd4a3d9..707b4ef2 100644 --- a/packages/webp-thumbnailer.nix +++ b/packages/webp-thumbnailer.nix @@ -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; }; }