From b7e91a3db0ced26cf83066f86a51611f577d4327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alu=C3=ADsio=20Augusto=20Silva=20Gon=C3=A7alves?= Date: Wed, 4 Nov 2020 16:41:05 -0300 Subject: [PATCH] dma: Limit supported platforms to Linux and the BSDs As far as I can tell, none of the other Unix have the requisite headers (namely `arpa/nameser.h`). --- pkgs/tools/networking/dma/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/dma/default.nix b/pkgs/tools/networking/dma/default.nix index 7faeb50..ff0f771 100644 --- a/pkgs/tools/networking/dma/default.nix +++ b/pkgs/tools/networking/dma/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/corecode/dma"; license = licenses.bsd3; - platforms = platforms.unix; + platforms = with platforms; linux ++ freebsd ++ netbsd ++ openbsd; maintainers = with maintainers; [ AluisioASG ]; }; } -- 2.26.2