10 stdenv.mkDerivation rec {
14 src = fetchFromGitLab {
15 domain = "gitlab.torproject.org";
20 sha256 = "sha256-ocJkoF9LMLC84ukFrm5pzjp/1gaXqDz8lzr9TdG+f88=";
24 # fix compatibility with C99
25 # https://gitlab.torproject.org/tpo/core/torsocks/-/merge_requests/9
27 url = "https://gitlab.torproject.org/tpo/core/torsocks/-/commit/1171bf2fd4e7a0cab02cf5fca59090b65af9cd29.patch";
28 hash = "sha256-qu5/0fy72+02QI0cVE/6YrR1kPuJxsZfG8XeODqVOPY=";
30 # tsocks_libc_accept4 only exists on Linux, use tsocks_libc_accept on other platforms
32 url = "https://gitlab.torproject.org/tpo/core/torsocks/uploads/eeec9833512850306a42a0890d283d77/0001-Fix-macros-for-accept4-2.patch";
33 hash = "sha256-XWi8+UFB8XgBFSl5QDJ+hLu/dH4CvAwYbeZz7KB10Bs=";
35 # no gethostbyaddr_r on darwin
36 ./torsocks-gethostbyaddr-darwin.patch
43 -e 's,\(local app_path\)=`which $1`,\1=`type -P $1`,' \
46 + lib.optionalString stdenv.hostPlatform.isLinux ''
48 -e 's,\(local getcap\)=.*,\1=${libcap}/bin/getcap,' \
52 nativeBuildInputs = [ autoreconfHook ];
54 doInstallCheck = true;
55 installCheckTarget = "check-recursive";
58 description = "Wrapper to safely torify applications";
59 mainProgram = "torsocks";
60 homepage = "https://gitlab.torproject.org/tpo/core/torsocks";
61 license = lib.licenses.gpl2Plus;
62 platforms = lib.platforms.unix;
63 maintainers = with lib.maintainers; [ thoughtpolice ];