about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDave Aitken <actionshrimp@users.noreply.github.com>2023-01-16 09:44:55 +0000
committerGitHub <noreply@github.com>2023-01-16 09:44:55 +0000
commitf59b2fbc630f6c3c930ab3b963858c368b56bf08 (patch)
treedc54998e2f9aefa7774cc75e75ec0491f71f35e0
parent317f537c961d00cece1d351404187f0a17195ef7 (diff)
tcpflow: broaden platforms to unix
Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>
-rw-r--r--pkgs/tools/networking/tcpflow/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/tcpflow/default.nix b/pkgs/tools/networking/tcpflow/default.nix
index bf483959331c5..46fda22959438 100644
--- a/pkgs/tools/networking/tcpflow/default.nix
+++ b/pkgs/tools/networking/tcpflow/default.nix
@@ -41,6 +41,6 @@ stdenv.mkDerivation rec {
     inherit (src.meta) homepage;
     license     = licenses.gpl3;
     maintainers = with maintainers; [ raskin obadz ];
-    platforms   = platforms.linux ++ [ "aarch64-darwin" ];
+    platforms   = platforms.unix;
   };
 }