torsocks: Fix the Darwin build

This commit is contained in:
John Wiegley 2020-05-10 14:52:15 -07:00
parent 7cd05de015
commit ef3cb36ba4
No known key found for this signature in database
GPG Key ID: C144D8F4F19FE630

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, autoreconfHook, libcap }:
{ stdenv, fetchgit, fetchurl, autoreconfHook, libcap }:
stdenv.mkDerivation rec {
pname = "torsocks";
@ -12,10 +12,19 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
patches = stdenv.lib.optional stdenv.isDarwin
(fetchurl {
url = "https://trac.torproject.org/projects/tor/raw-attachment/ticket/28538/0001-Fix-macros-for-accept4-2.patch";
sha256 = "97881f0b59b3512acc4acb58a0d6dfc840d7633ead2f400fad70dda9b2ba30b0";
});
postPatch = ''
# Patch torify_app()
sed -i \
-e 's,\(local app_path\)=`which $1`,\1=`type -P $1`,' \
src/bin/torsocks.in
'' + stdenv.lib.optionalString stdenv.isLinux ''
sed -i \
-e 's,\(local getcap\)=.*,\1=${libcap}/bin/getcap,' \
src/bin/torsocks.in
'';