lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

speedcrunch: mark broken on darwin

authored by

Rick van Schijndel and committed by
Janne Heß
a0dd8198 c312ae98

+2 -2
+2 -2
pkgs/applications/science/math/speedcrunch/default.nix
··· 1 - { mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }: 1 + { stdenv, mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }: 2 2 3 3 mkDerivation rec { 4 4 pname = "speedcrunch"; ··· 32 32 maintainers = with maintainers; [ gebner j0hax ]; 33 33 inherit (qtbase.meta) platforms; 34 34 # works with qt 5.6 and qt 5.8 35 - broken = builtins.compareVersions qtbase.version "5.7.0" == 0; 35 + broken = builtins.compareVersions qtbase.version "5.7.0" == 0 || stdenv.isDarwin; 36 36 }; 37 37 }