3
0
Fork 0
forked from mirrors/nixpkgs

dstat: enable color output

Give dstat access to the "curses" module in the Python standard library
so that it can color its output. This is similar to how other distros
package it (e.g. Fedora, Ubuntu).
This commit is contained in:
Bjørn Forsman 2013-08-30 18:43:54 +02:00
parent b8872549b7
commit e8e76ac12e

View file

@ -6285,7 +6285,11 @@ let
drbd = callPackage ../os-specific/linux/drbd { };
dstat = callPackage ../os-specific/linux/dstat { };
dstat = callPackage ../os-specific/linux/dstat {
# pythonFull includes the "curses" standard library module, for pretty
# dstat color output
python = pythonFull;
};
libuuid =
if crossSystem != null && crossSystem.config == "i586-pc-gnu"