Unverified Commit 8b6f53ee authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

htop: backport configuration path fix (#351463)

parents c1f46dbb 4cdef761
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, stdenv, autoreconfHook, pkg-config
{ lib, fetchFromGitHub, fetchpatch2, stdenv, autoreconfHook, pkg-config
, ncurses
, IOKit
, libcap
@@ -20,6 +20,16 @@ stdenv.mkDerivation rec {
    hash = "sha256-qDhQkzY2zj2yxbgFUXwE0MGEgAFOsAhnapUuetO9WTw=";
  };

  patches = [
    # See https://github.com/htop-dev/htop/pull/1412
    # Remove when updating to 3.4.0
    (fetchpatch2 {
      name = "htop-resolve-configuration-path.patch";
      url = "https://github.com/htop-dev/htop/commit/0dac8e7d38ec3aeae901a987717b5177986197e4.patch";
      hash = "sha256-Er1d/yV1fioYfEmXNlLO5ayAyXkyy+IaGSx1KWXvlv0=";
    })
  ];

  nativeBuildInputs = [ autoreconfHook ]
    ++ lib.optional stdenv.hostPlatform.isLinux pkg-config
  ;