pdns-recursor: disable on i686-linux
Support for 32-bit platforms with no 64-bit time_t has ended. See https://mailman.powerdns.com/pipermail/pdns-users/2021-May/027220.html
This commit is contained in:
parent
36d3d4575d
commit
cbfd8831a1
1 changed files with 3 additions and 0 deletions
|
@ -33,6 +33,9 @@ stdenv.mkDerivation rec {
|
|||
description = "A recursive DNS server";
|
||||
homepage = "https://www.powerdns.com/";
|
||||
platforms = platforms.linux;
|
||||
badPlatforms = [
|
||||
"i686-linux" # a 64-bit time_t is needed
|
||||
];
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ rnhmjoj ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue