summaryrefslogtreecommitdiff
path: root/htop.nix
blob: a8561b9300e80670203e82da6a6349158e28b0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ inputs }:
self: super: {
  htop =
    with super;
    htop.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/htop-dev/htop";
        ref = "main";
        rev = "076b913c7f876ba0489b9751043eeb61aa34680f";
      };
      #      buildInputs = oldAttrs.buildInputs ++ [ libnl ];
    });
}