mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-20 09:47:57 +02:00
nix: Remove usage of with lib;
A new best practice.
This commit is contained in:
parent
a3194f8f0c
commit
6b00f45997
@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Slab serif typeface designed by Alessio Laiso";
|
description = "Slab serif typeface designed by Alessio Laiso";
|
||||||
homepage = "https://github.com/AlessioLaiso/aleo";
|
homepage = "https://github.com/AlessioLaiso/aleo";
|
||||||
license = licenses.ofl;
|
license = lib.licenses.ofl;
|
||||||
maintainers = with maintainers; [ donovanglover ];
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
platforms = platforms.all;
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,11 +22,11 @@ stdenvNoCC.mkDerivation {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Fluent folder icons converted to png";
|
description = "Fluent folder icons converted to png";
|
||||||
homepage = "https://github.com/vinceliuice/Fluent-icon-theme";
|
homepage = "https://github.com/vinceliuice/Fluent-icon-theme";
|
||||||
license = licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ donovanglover ];
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
platforms = platforms.all;
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -214,10 +214,10 @@ stdenvNoCC.mkDerivation {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "A collection of osu! fanart entries since 2017";
|
description = "A collection of osu! fanart entries since 2017";
|
||||||
homepage = "https://osu.ppy.sh/home/news";
|
homepage = "https://osu.ppy.sh/home/news";
|
||||||
maintainers = with maintainers; [ donovanglover ];
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
platforms = platforms.all;
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -17,10 +17,10 @@ stdenvNoCC.mkDerivation {
|
|||||||
echo "MimeType=image/x-webp;image/webp;" >> $out/share/thumbnailers/webp.thumbnailer
|
echo "MimeType=image/x-webp;image/webp;" >> $out/share/thumbnailers/webp.thumbnailer
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
homepage = "https://github.com/liquuid/nautilus-webp-thumbnailer";
|
homepage = "https://github.com/liquuid/nautilus-webp-thumbnailer";
|
||||||
description = "Create thumbnails from webp files";
|
description = "Create thumbnails from webp files";
|
||||||
maintainers = with maintainers; [ donovanglover ];
|
maintainers = with lib.maintainers; [ donovanglover ];
|
||||||
platforms = platforms.linux;
|
platforms = lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user