verilog: Disable tests on darwin

+3 -1
+3 -1
pkgs/applications/science/electronics/verilog/default.nix
··· 38 38 39 39 enableParallelBuilding = true; 40 40 41 - doCheck = true; 41 + # tests try to access /proc/ which does not exist on darwin 42 + # Cannot locate IVL modules : couldn't get command path from OS. 43 + doCheck = !stdenv.isDarwin; 42 44 43 45 installCheckInputs = [ perl ]; 44 46