biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / htop / htop-vim.nix
blob6dfb72c8ca75ee1db8d77b6bb0b479398d99013a
1 { lib, htop, fetchFromGitHub }:
3 htop.overrideAttrs (oldAttrs: rec {
4   pname = "htop-vim";
5   version = "unstable-2023-02-16";
7   src = fetchFromGitHub {
8     owner = "KoffeinFlummi";
9     repo = pname;
10     rev = "b2b58f8f152343b70c33b79ba51a298024278621";
11     hash = "sha256-ZfdBAlnjoy8g6xwrR/i2+dGldMOfLlX6DRlNqB8pkGM=";
12   };
14   meta = with lib; {
15     inherit (oldAttrs.meta) platforms license;
16     description = "Interactive process viewer for Linux, with vim-style keybindings";
17     homepage = "https://github.com/KoffeinFlummi/htop-vim";
18     maintainers = with maintainers; [ thiagokokada ];
19     mainProgram = "htop";
20   };