Merge pull request #73475 from rwanyoike/patch-1
mtr: patch for "Error decoding localhost address"
This commit is contained in:
commit
8c1a5a336c
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ stdenv, lib, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig
|
||||
, libcap, ncurses
|
||||
, withGtk ? false, gtk2 ? null }:
|
||||
|
||||
|
@ -14,6 +14,14 @@ stdenv.mkDerivation rec {
|
|||
rev = "v${version}";
|
||||
sha256 = "0n0zr9k61w7a9psnzgp7xnc7ll1ic2xzcvqsbbbyndg3v9rff6bw";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# https://github.com/traviscross/mtr/pull/315
|
||||
(fetchpatch {
|
||||
url = https://github.com/traviscross/mtr/pull/315.patch?full_index=1;
|
||||
sha256 = "18qcsj9058snc2qhq6v6gdbqhz021gi5fgw9h7vfczv45gf0qasa";
|
||||
})
|
||||
];
|
||||
|
||||
# we need this before autoreconfHook does its thing
|
||||
postPatch = ''
|
||||
|
|
Loading…
Reference in a new issue