[Overlays/Packages] Add many features in htop build

Signed-off-by: Antoine Viallon <antoine@lesviallon.fr>
This commit is contained in:
Antoine Viallon 2022-03-25 03:04:01 +01:00
parent 95115da012
commit aae354de14
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -38,6 +38,21 @@ in
rsyncOptimized = optimizeForThisHost super.rsync;
nano = optimizeForThisHost super.nano;
veracrypt = optimizeForThisHost pkgs.veracrypt;
htop = optimizeForThisHost (super.htop.overrideAttrs (old: {
configureFlags = old.configureFlags ++ [
"--enable-hwloc"
];
nativeBuildInputs = old.nativeBuildInputs ++ (with super; [
pkg-config
]);
buildInputs = old.buildInputs ++ (with super; [
libunwind
libcap
libnl
hwloc
]);
}));
steam = super.steam.override {
withJava = true;
};