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:
rnhmjoj 2021-06-02 17:17:39 +02:00
parent 36d3d4575d
commit cbfd8831a1
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450

View File

@ -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 ];
};