mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
7edb27b7af
We shouldn't have options that simply enable a package.
37 lines
672 B
Nix
37 lines
672 B
Nix
# This module is deprecated, since you can just say ‘fonts.fonts = [
|
||
# pkgs.corefonts ];’ instead.
|
||
|
||
{ config, lib, pkgs, ... }:
|
||
|
||
with lib;
|
||
|
||
{
|
||
|
||
options = {
|
||
|
||
fonts = {
|
||
|
||
enableCoreFonts = mkOption {
|
||
visible = false;
|
||
default = false;
|
||
description = ''
|
||
Whether to include Microsoft's proprietary Core Fonts. These fonts
|
||
are redistributable, but only verbatim, among other restrictions.
|
||
See <link xlink:href="http://corefonts.sourceforge.net/eula.htm"/>
|
||
for details.
|
||
'';
|
||
};
|
||
|
||
};
|
||
|
||
};
|
||
|
||
|
||
config = mkIf config.fonts.enableCoreFonts {
|
||
|
||
fonts.fonts = [ pkgs.corefonts ];
|
||
|
||
};
|
||
|
||
}
|