Merge branch 'master' into staging-next

This commit is contained in:
Jan Tojnar
2021-03-12 19:58:39 +01:00
18 changed files with 193 additions and 59 deletions
+5
View File
@@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config bison flex check ];
buildInputs = [ libdaemon ];
# Needed for cross-compilation
makeFlags = [
"AR=${stdenv.cc.targetPrefix}ar"
];
meta = with lib; {
homepage = "http://www.litech.org/radvd/";
description = "IPv6 Router Advertisement Daemon";
+3
View File
@@ -37,6 +37,9 @@ stdenv.mkDerivation rec {
configureFlags = [
(lib.withFeatureAs (openssl != null) "ssl" "openssl")
] ++ lib.optionals stdenv.isDarwin [
# https://lists.gnu.org/archive/html/bug-wget/2021-01/msg00076.html
"--without-included-regex"
];
doCheck = false;