verilog: Disable tests on darwin

+3 -1
+3 -1
pkgs/applications/science/electronics/verilog/default.nix
··· 38 39 enableParallelBuilding = true; 40 41 - doCheck = true; 42 43 installCheckInputs = [ perl ]; 44
··· 38 39 enableParallelBuilding = true; 40 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; 44 45 installCheckInputs = [ perl ]; 46