about summary refs log tree commit diff
path: root/pkgs/applications/radio/uhd
diff options
context:
space:
mode:
authorDoron Behar <doron.behar@gmail.com>2021-12-23 11:28:32 +0200
committerDoron Behar <doron.behar@gmail.com>2021-12-23 11:28:32 +0200
commit44ee31f6c64130b2a4cd918b9b9c0c6ba694cef9 (patch)
treeba8f962c2ac0aa895effac777515c0db8fa24a4a /pkgs/applications/radio/uhd
parent03572bd8d94947dcb60c789b36df37fe474251be (diff)
uhd: Disable tests on darwin
Diffstat (limited to 'pkgs/applications/radio/uhd')
-rw-r--r--pkgs/applications/radio/uhd/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/radio/uhd/default.nix b/pkgs/applications/radio/uhd/default.nix
index 6ebd15a27c96d..2928b19f29df2 100644
--- a/pkgs/applications/radio/uhd/default.nix
+++ b/pkgs/applications/radio/uhd/default.nix
@@ -107,7 +107,8 @@ stdenv.mkDerivation rec {
     ++ optionals (enableDpdk) [ dpdk ]
   ;
 
-  doCheck = true;
+  # many tests fails on darwin, according to ofborg
+  doCheck = !stdenv.isDarwin;
 
   # Build only the host software
   preConfigure = "cd host";