Merge pull request #125411 from NixOS/backport-125392-to-release-21.05

[Backport release-21.05] pdns-recursor: disable on i686-linux
This commit is contained in:
Michele Guerini Rocco 2021-06-02 23:53:25 +02:00 committed by GitHub
commit d0f1a29ed0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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