mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-25 01:33:17 +01:00
chore(packages): Add missing meta attributes
This commit is contained in:
parent
9f10d795c7
commit
74f0e33d19
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
})
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user