Merge pull request #125392 from rnhmjoj/pdns

pdns-recursor: disable on i686-linux
This commit is contained in:
Michele Guerini Rocco 2021-06-02 20:48:50 +02:00 committed by GitHub
commit a8e4f721aa
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 ];
};