perlPackages.NetAsyncWebSocket: 0.13 -> 0.14 (#352432)
[NixPkgs.git] / pkgs / tools / system / htop / htop-vim.nix
blob28fafbe388293be4c3f72fe73e2ad38223ba1472
2   lib,
3   htop,
4   fetchFromGitHub,
5 }:
7 htop.overrideAttrs (oldAttrs: rec {
8   pname = "htop-vim";
9   version = "unstable-2023-02-16";
11   src = fetchFromGitHub {
12     owner = "KoffeinFlummi";
13     repo = pname;
14     rev = "b2b58f8f152343b70c33b79ba51a298024278621";
15     hash = "sha256-ZfdBAlnjoy8g6xwrR/i2+dGldMOfLlX6DRlNqB8pkGM=";
16   };
18   meta = with lib; {
19     inherit (oldAttrs.meta) platforms license;
20     description = "Interactive process viewer for Linux, with vim-style keybindings";
21     homepage = "https://github.com/KoffeinFlummi/htop-vim";
22     maintainers = with maintainers; [ thiagokokada ];
23     mainProgram = "htop";
24   };