mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
w3m: Add a variant without graphics support and use for NixOS manual
This gets rid of various graphics libraries from the minimal installer.
This commit is contained in:
parent
f8dc087c71
commit
696c6bed4e
@ -99,7 +99,7 @@ in
|
||||
|
||||
services.nixosManual.browser = mkOption {
|
||||
type = types.path;
|
||||
default = "${pkgs.w3m-nox}/bin/w3m";
|
||||
default = "${pkgs.w3m-nographics}/bin/w3m";
|
||||
description = ''
|
||||
Browser used to show the manual.
|
||||
'';
|
||||
|
@ -18552,6 +18552,12 @@ with pkgs;
|
||||
imlib2 = imlib2-nox;
|
||||
};
|
||||
|
||||
# Version without X11 or graphics
|
||||
w3m-nographics = w3m.override {
|
||||
x11Support = false;
|
||||
graphicsSupport = false;
|
||||
};
|
||||
|
||||
# Version for batch text processing, not a good browser
|
||||
w3m-batch = w3m.override {
|
||||
graphicsSupport = false;
|
||||
|
Loading…
Reference in New Issue
Block a user