nixpkgs/pkgs/tools/system/htop/htop-vim.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
629 B
Nix
Raw Normal View History

2021-11-20 05:28:54 +00:00
{ lib, htop, fetchFromGitHub }:
htop.overrideAttrs (oldAttrs: rec {
pname = "htop-vim";
version = "unstable-2022-05-24";
2021-11-20 05:28:54 +00:00
src = fetchFromGitHub {
owner = "KoffeinFlummi";
repo = pname;
rev = "830ef7144940875d9d9716e33aff8651d164026e";
sha256 = "sha256-ojStkpWvhb+W3dWyRev0VwjtCVL/I9L8FhtXcQ+ODLA=";
2021-11-20 05:28:54 +00:00
};
meta = with lib; {
inherit (htop.meta) platforms license;
2021-11-20 05:28:54 +00:00
description = "An interactive process viewer for Linux, with vim-style keybindings";
homepage = "https://github.com/KoffeinFlummi/htop-vim";
maintainers = with maintainers; [ thiagokokada ];
2021-11-24 13:21:02 +00:00
mainProgram = "htop";
2021-11-20 05:28:54 +00:00
};
})