mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos/ghostscript: evaporate the extra whitespace
This commit is contained in:
parent
b0c67b4b6e
commit
f9fdeb2dbc
1 changed files with 9 additions and 19 deletions
|
@ -3,31 +3,21 @@
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
fonts.enableGhostscriptFonts = mkOption {
|
||||||
fonts = {
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
enableGhostscriptFonts = mkOption {
|
description = lib.mdDoc ''
|
||||||
type = types.bool;
|
Whether to add the fonts provided by Ghostscript (such as
|
||||||
default = false;
|
various URW fonts and the “Base-14” Postscript fonts) to the
|
||||||
description = lib.mdDoc ''
|
list of system fonts, making them available to X11
|
||||||
Whether to add the fonts provided by Ghostscript (such as
|
applications.
|
||||||
various URW fonts and the “Base-14” Postscript fonts) to the
|
'';
|
||||||
list of system fonts, making them available to X11
|
|
||||||
applications.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
config = mkIf config.fonts.enableGhostscriptFonts {
|
config = mkIf config.fonts.enableGhostscriptFonts {
|
||||||
|
|
||||||
fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
|
fonts.packages = [ "${pkgs.ghostscript}/share/ghostscript/fonts" ];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue