Merge pull request #203030 from trofi/httping-fix-for-darwin
httping: pull upstream fix for darwin
This commit is contained in:
commit
f32d471a2e
1 changed files with 11 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, fftw ? null
|
||||
, gettext
|
||||
, libintl
|
||||
|
@ -19,6 +20,16 @@ stdenv.mkDerivation rec {
|
|||
hash = "sha256-aExTXXtW03UKMuMjTMx1k/MUpcRMh1PdSPkDGH+Od70=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Pull upstream fix for missing <unistd.h>
|
||||
# https://github.com/folkertvanheusden/HTTPing/pull/8
|
||||
(fetchpatch {
|
||||
name = "add-unistd.patch";
|
||||
url = "https://github.com/folkertvanheusden/HTTPing/commit/aad3c275686344fe9a235faeac4ee3832f3aa8d5.patch";
|
||||
hash = "sha256-bz3AMQTSfSTwUyf9WbkAFWVmFo06ei+Qd55x+RRDREY=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue