mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #125392 from rnhmjoj/pdns
pdns-recursor: disable on i686-linux
This commit is contained in:
commit
a8e4f721aa
@ -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 New Issue
Block a user