summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-11-20 02:28:54 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2021-11-20 02:28:54 -0300
commit4e89efeed0824f9b02666faa50a59338a3f04977 (patch)
tree733e7f2f72ee9e84097eee9af81250b36ce99abc /pkgs/tools/system
parentfa9d6c3d9328e84787451c05170cf816295aa630 (diff)
htop-vim: init at unstable-2021-10-11
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/htop/htop-vim.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/system/htop/htop-vim.nix b/pkgs/tools/system/htop/htop-vim.nix
new file mode 100644
index 000000000000..cd29bfa6e8ac
--- /dev/null
+++ b/pkgs/tools/system/htop/htop-vim.nix
@@ -0,0 +1,21 @@
+{ lib, htop, fetchFromGitHub }:
+
+htop.overrideAttrs (oldAttrs: rec {
+ pname = "htop-vim";
+ version = "unstable-2021-10-11";
+
+ src = fetchFromGitHub {
+ owner = "KoffeinFlummi";
+ repo = pname;
+ rev = "ba6fd3891e9af60b41bd092524cc05f2469fec4b";
+ sha256 = "sha256-G83+5GgEz41begDkdK8zNx48UleufFCJ9pOQ9nbtFNs=";
+ };
+
+ meta = with lib; {
+ description = "An interactive process viewer for Linux, with vim-style keybindings";
+ homepage = "https://github.com/KoffeinFlummi/htop-vim";
+ license = licenses.gpl2Only;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ thiagokokada ];
+ };
+})