lol

Merge pull request #174755 from helsinki-systems/clean/bind9

bind: remove broken configure flags

authored by

Jörg Thalheim and committed by
GitHub
bb52e84b 206b2cfd

+2 -21
+2 -21
pkgs/servers/dns/bind/default.nix
··· 1 1 { config, stdenv, lib, fetchurl, fetchpatch 2 2 , perl, pkg-config 3 3 , libcap, libtool, libxml2, openssl, libuv, nghttp2, jemalloc 4 - , enableGSSAPI ? true, libkrb5 5 4 , enablePython ? false, python3 6 - , enableSeccomp ? false, libseccomp 5 + , enableGSSAPI ? true, libkrb5 7 6 , buildPackages, nixosTests 8 7 }: 9 8 ··· 25 24 nativeBuildInputs = [ perl pkg-config ]; 26 25 buildInputs = [ libtool libxml2 openssl libuv nghttp2 jemalloc ] 27 26 ++ lib.optional stdenv.isLinux libcap 28 - ++ lib.optional enableSeccomp libseccomp 29 27 ++ lib.optional enableGSSAPI libkrb5 30 28 ++ lib.optional enablePython (python3.withPackages (ps: with ps; [ ply ])); 31 29 ··· 33 31 34 32 configureFlags = [ 35 33 "--localstatedir=/var" 36 - "--with-libtool" 37 - (if enablePython then "--with-python" else "--without-python") 38 - "--without-atf" 39 - "--without-dlopen" 40 - "--without-docbook-xsl" 41 - "--without-idn" 42 - "--without-idnlib" 43 34 "--without-lmdb" 44 - "--without-libjson" 45 - "--without-pkcs11" 46 - "--without-purify" 47 - "--with-randomdev=/dev/random" 48 - "--with-ecdsa" 49 - "--with-gost" 50 - "--without-eddsa" 51 - "--with-aes" 52 - ] ++ lib.optional stdenv.isLinux "--with-libcap=${libcap.dev}" 53 - ++ lib.optional enableSeccomp "--enable-seccomp" 54 - ++ lib.optional enableGSSAPI "--with-gssapi=${libkrb5.dev}/bin/krb5-config" 35 + ] ++ lib.optional enableGSSAPI "--with-gssapi=${libkrb5.dev}/bin/krb5-config" 55 36 ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "BUILD_CC=$(CC_FOR_BUILD)"; 56 37 57 38 postInstall = ''