nix: Remove usage of with lib;

A new best practice.
This commit is contained in:
Donovan Glover 2024-06-21 00:40:19 -04:00
parent a3194f8f0c
commit 6b00f45997
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 14 additions and 14 deletions

View File

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

View File

@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation {
runHook postInstall
'';
meta = with lib; {
meta = {
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;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ donovanglover ];
platforms = lib.platforms.all;
};
}

View File

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

View File

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