installFonts: move to pkgs/by-name (#532094)

This commit is contained in:
Yohann Boniface
2026-06-15 22:31:44 +00:00
committed by GitHub
3 changed files with 17 additions and 13 deletions
+17
View File
@@ -0,0 +1,17 @@
{
lib,
makeSetupHook,
}:
makeSetupHook {
name = "install-fonts-hook";
meta = {
description = "Copies standard font extension into their respective installation path";
maintainers = with lib.maintainers; [
pancaek
sigmanificient
jopejoe1
];
license = lib.licenses.mit;
};
} ./install-fonts.sh
-13
View File
@@ -753,19 +753,6 @@ with pkgs;
makeDesktopItem = callPackage ../build-support/make-desktopitem { };
installFonts = makeSetupHook {
name = "install-fonts-hook";
meta = {
description = "Copies standard font extension into their respective installation path";
maintainers = with lib.maintainers; [
pancaek
sigmanificient
jopejoe1
];
license = lib.licenses.mit;
};
} ../build-support/setup-hooks/install-fonts.sh;
copyPkgconfigItems = makeSetupHook {
name = "copy-pkg-config-items-hook";
meta.license = lib.licenses.mit;