nixpkgs/pkgs/tools/networking/unbound/python.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, unbound, openssl, expat, libevent, swig, pythonPackages }:
2016-07-22 22:25:36 +00:00
2016-08-01 08:19:48 +00:00
let
inherit (pythonPackages) python;
2021-08-06 07:17:08 +00:00
in
stdenv.mkDerivation rec {
2016-07-22 22:25:36 +00:00
pname = "pyunbound";
inherit (unbound) version src;
2016-07-22 22:25:36 +00:00
nativeBuildInputs = [ swig ];
2016-07-22 22:25:36 +00:00
buildInputs = [ openssl expat libevent python ];
2021-08-06 07:17:08 +00:00
postPatch = ''
substituteInPlace Makefile.in \
--replace "\$(DESTDIR)\$(PYTHON_SITE_PKG)" "$out/${python.sitePackages}" \
--replace "\$(LIBTOOL) --mode=install cp _unbound.la" "cp _unbound.la"
'';
2016-07-22 22:25:36 +00:00
preConfigure = "export PYTHON_VERSION=${python.pythonVersion}";
2016-07-22 22:25:36 +00:00
configureFlags = [
"--with-ssl=${openssl.dev}"
"--with-libexpat=${expat.dev}"
"--with-libevent=${libevent.dev}"
"--localstatedir=/var"
"--sysconfdir=/etc"
"--sbindir=\${out}/bin"
"--enable-pie"
"--enable-relro-now"
"--with-pyunbound"
"DESTDIR=$out"
"PREFIX="
2016-07-22 22:25:36 +00:00
];
preInstall = ''
mkdir -p $out/${python.sitePackages} $out/etc/${pname}
cp .libs/_unbound.so .libs/libunbound.so* $out/${python.sitePackages}
substituteInPlace _unbound.la \
--replace "-L.libs $PWD/libunbound.la" "-L$out/${python.sitePackages}"
2021-08-06 07:17:08 +00:00
'';
2016-07-22 22:25:36 +00:00
installFlags = [
"configfile=\${out}/etc/unbound/unbound.conf"
"pyunbound-install"
"lib"
];
2016-07-22 22:25:36 +00:00
# All we want is the Unbound Python module
postInstall = ''
# Generate the built in root anchor and root key and store these in a logical place
2016-07-22 22:25:36 +00:00
# to be used by tools depending only on the Python module
$out/bin/unbound-anchor -l | head -1 > $out/etc/${pname}/root.anchor
$out/bin/unbound-anchor -l | tail --lines=+2 - > $out/etc/${pname}/root.key
# We don't need anything else
2021-08-06 07:17:08 +00:00
rm -r $out/bin $out/share $out/include $out/etc/unbound
''
# patchelf is only available on Linux and no patching is needed on darwin
+ lib.optionalString stdenv.isLinux ''
patchelf --replace-needed libunbound.so.8 $out/${python.sitePackages}/libunbound.so.8 $out/${python.sitePackages}/_unbound.so
'';
2016-07-22 22:25:36 +00:00
meta = with lib; {
2016-07-22 22:25:36 +00:00
description = "Python library for Unbound, the validating, recursive, and caching DNS resolver";
license = licenses.bsd3;
2021-08-06 07:17:08 +00:00
homepage = "https://www.unbound.net";
2016-07-22 22:25:36 +00:00
maintainers = with maintainers; [ leenaars ];
2021-08-06 07:17:08 +00:00
platforms = platforms.unix;
2016-07-22 22:25:36 +00:00
};
}