summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2021-06-02 17:17:39 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2021-06-02 19:18:17 +0200
commitcbfd8831a1082f6bea819f92c8bfd6ec688c9fc4 (patch)
tree6528f5e766f95667fd1a9cd892c742bb8aeca40b /pkgs/servers
parent36d3d4575d05b74cad66c53807be42e5b6f99dc2 (diff)
downloadnixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar.gz
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar.bz2
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar.lz
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar.xz
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.tar.zst
nixpkgs-cbfd8831a1082f6bea819f92c8bfd6ec688c9fc4.zip
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
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/dns/pdns-recursor/default.nix3
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 fa8723ea965..ee3d8aafa1c 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 ];
   };