mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
nixos/fontconfig: Move deprecated ultimate removals to relevant module
This was a mistake in https://github.com/NixOS/nixpkgs/pull/61570, this does not belong to prometheus
This commit is contained in:
parent
a1aecffc97
commit
78453e6ba6
@ -278,7 +278,14 @@ in
|
|||||||
(mkRemovedOptionModule [ "fonts" "fontconfig" "hinting" "style" ] "")
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "hinting" "style" ] "")
|
||||||
(mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "")
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "forceAutohint" ] "")
|
||||||
(mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "")
|
(mkRemovedOptionModule [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ] "")
|
||||||
];
|
] ++ lib.forEach [ "enable" "substitutions" "preset" ]
|
||||||
|
(opt: lib.mkRemovedOptionModule [ "fonts" "fontconfig" "ultimate" "${opt}" ] ''
|
||||||
|
The fonts.fontconfig.ultimate module and configuration is obsolete.
|
||||||
|
The repository has since been archived and activity has ceased.
|
||||||
|
https://github.com/bohoomil/fontconfig-ultimate/issues/171.
|
||||||
|
No action should be needed for font configuration, as the fonts.fontconfig
|
||||||
|
module is already used by default.
|
||||||
|
'');
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
|
@ -168,15 +168,6 @@ in
|
|||||||
(opt: lib.mkRemovedOptionModule [ "services" "prometheus" "${opt}" ] ''
|
(opt: lib.mkRemovedOptionModule [ "services" "prometheus" "${opt}" ] ''
|
||||||
The prometheus exporters are now configured using `services.prometheus.exporters'.
|
The prometheus exporters are now configured using `services.prometheus.exporters'.
|
||||||
See the 18.03 release notes for more information.
|
See the 18.03 release notes for more information.
|
||||||
'' ))
|
|
||||||
|
|
||||||
++ (lib.forEach [ "enable" "substitutions" "preset" ]
|
|
||||||
(opt: lib.mkRemovedOptionModule [ "fonts" "fontconfig" "ultimate" "${opt}" ] ''
|
|
||||||
The fonts.fontconfig.ultimate module and configuration is obsolete.
|
|
||||||
The repository has since been archived and activity has ceased.
|
|
||||||
https://github.com/bohoomil/fontconfig-ultimate/issues/171.
|
|
||||||
No action should be needed for font configuration, as the fonts.fontconfig
|
|
||||||
module is already used by default.
|
|
||||||
'' ));
|
'' ));
|
||||||
|
|
||||||
options.services.prometheus.exporters = mkOption {
|
options.services.prometheus.exporters = mkOption {
|
||||||
|
Loading…
Reference in New Issue
Block a user