w3m-nox: use imlib2 without X11 support

Also, the minimal live CD previously installed both the X11 and
non-X11 versions (through services.nixosManual) of w3m.
This commit is contained in:
Franz Pletz 2016-11-22 21:09:14 +01:00
parent 5a184be96f
commit f983743d75
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 4 additions and 2 deletions

View file

@ -7,7 +7,7 @@
# Include some utilities that are useful for installing or repairing
# the system.
environment.systemPackages = [
pkgs.w3m # needed for the manual anyway
pkgs.w3m-nox # needed for the manual anyway
pkgs.testdisk # useful for repairing boot problems
pkgs.mssys # for writing Microsoft boot sectors / MBRs
pkgs.efibootmgr

View file

@ -15105,13 +15105,15 @@ in
# Version without X11
w3m-nox = w3m.override {
x11Support = false;
imlib2 = imlib2-nox;
};
# Version for batch text processing, not a good browser
w3m-batch = w3m.override {
graphicsSupport = false;
x11Support = false;
mouseSupport = false;
x11Support = false;
imlib2 = imlib2-nox;
};
weechat = callPackage ../applications/networking/irc/weechat {