forked from mirrors/nixpkgs
63b6498aa0
The darwin build has been broken for a long time and I'm unable to properly debug the issue. What appears to be happening is that the symbol `HAVE_SANDBOX_INIT` ends up being defined as 1 while `HAVE_SANDBOX_H` ends up being 0, resulting in undefined reference errors when `sandbox_init()` is called (because `<sandbox.h>` is not included first). This is a regression from dnscrypt-proxy 1.6.0 to 1.6.1. For context, sandbox.h is a deprecated OSX mechanism for sandboxing. The build failure is at https://hydra.nixos.org/build/32705849/nixlog/1/raw This patch closes NixOS/nixpkgs#14064
31 lines
850 B
Nix
31 lines
850 B
Nix
{ stdenv, fetchurl, libsodium, pkgconfig, systemd }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dnscrypt-proxy-${version}";
|
|
version = "1.6.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2";
|
|
sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9";
|
|
};
|
|
|
|
configureFlags = ''
|
|
${optionalString stdenv.isLinux "--with-systemd"}
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd;
|
|
|
|
meta = {
|
|
description = "A tool for securing communications between a client and a DNS resolver";
|
|
homepage = https://dnscrypt.org/;
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ joachifm jgeerds ];
|
|
# upstream claims OSX support, but Hydra fails
|
|
platforms = with platforms; allBut [ darwin ];
|
|
};
|
|
}
|