MS Core Fonts are now optional

svn path=/nixos/trunk/; revision=10962
This commit is contained in:
Michael Raskin 2008-03-05 14:30:19 +00:00
parent cedc8aaf58
commit cf28e6d341
2 changed files with 9 additions and 1 deletions

View File

@ -13,13 +13,14 @@
pkgs.xorg.fontbhttf
pkgs.xorg.fontbhlucidatypewriter100dpi
pkgs.ttf_bitstream_vera
pkgs.corefonts
pkgs.freefont_ttf
pkgs.xorg.fontbh100dpi
pkgs.xorg.fontmiscmisc
pkgs.xorg.fontcursormisc
]
++ (pkgs.lib.optional (config.fonts.enableCoreFonts) pkgs.corefonts)
++ pkgs.lib.optional (config.fonts.enableGhostscriptFonts) "${pkgs.ghostscript}/share/ghostscript/fonts"
++ ((config.fonts.extraFonts) pkgs)

View File

@ -2050,6 +2050,13 @@ root ALL=(ALL) SETENV: ALL
";
};
enableCoreFonts = mkOption {
default = true;
description = "
Whether to include MS Core Fonts (redistributable, but only verbatim).
";
};
};