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:
parent
b8872549b7
commit
e8e76ac12e
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue