tvl-depot/users/multi/pkgs/htop/default.nix

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

20 lines
453 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
newVer = "3.0.2";
newSrc = pkgs.fetchFromGitHub {
owner = "htop-dev";
repo = "htop";
rev = "59ef15b2ad6037f40d7fe4207b2b59dd11b14b8b";
sha256 = "0sirwfvqwwq2x2k25vd4k4cf9d5qv17yjizidxq4y5xfh2v0djmd";
};
in
with pkgs; htop.overrideAttrs
({ nativeBuildInputs ? [], ... }:
{
nativeBuildInputs = nativeBuildInputs ++ [ autoreconfHook ];
src = newSrc;
version = newVer;
})