mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
htop: backport sort order patch
This commit is contained in:
parent
37467b479a
commit
db194f6e2a
1 changed files with 12 additions and 0 deletions
|
@ -87,6 +87,18 @@
|
||||||
tree_view = 1;
|
tree_view = 1;
|
||||||
update_process_names = 1;
|
update_process_names = 1;
|
||||||
};
|
};
|
||||||
|
package = pkgs.htop.overrideAttrs (
|
||||||
|
{ patches ? [ ], ... }: {
|
||||||
|
patches = patches ++ [
|
||||||
|
# This patch fixes process sort order while in tree view.
|
||||||
|
# Started in 3.3.0. Should be fixed in 3.4.0.
|
||||||
|
(pkgs.fetchpatch {
|
||||||
|
url = "https://github.com/htop-dev/htop/commit/5d778eaacc78c69d5597b57afb4f98062d8856ef.patch";
|
||||||
|
hash = "sha256-bjIYve2cAQNYKOYqQcVrw3aJs9ceanjfv0Y9yRwNlvg=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
|
|
Loading…
Reference in a new issue