diff options
| author | rnhmjoj <rnhmjoj@inventati.org> | 2021-06-02 17:17:39 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-06-02 18:52:06 +0000 |
| commit | 98f321b5bb43afd520b2df94ae027466439f599d (patch) | |
| tree | bdd322927a55da4507395e78dde5abe8f06bfea7 | |
| parent | Merge pull request #125341 from hercules-ci/backport-podman-improvements (diff) | |
| download | nixpkgs-98f321b5bb43afd520b2df94ae027466439f599d.tar.gz | |
pdns-recursor: disable on i686-linuxorigin/backport-125392-to-release-21.05
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
(cherry picked from commit cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4)
| -rw-r--r-- | pkgs/servers/dns/pdns-recursor/default.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/servers/dns/pdns-recursor/default.nix b/pkgs/servers/dns/pdns-recursor/default.nix index fa8723ea9658..ee3d8aafa1c6 100644 --- a/pkgs/servers/dns/pdns-recursor/default.nix +++ b/pkgs/servers/dns/pdns-recursor/default.nix @@ -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 ]; }; |
