summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRick van Schijndel <rol3517@gmail.com>2022-05-29 10:24:35 +0200
committerJanne Heß <janne@hess.ooo>2022-05-30 13:42:58 +0200
commita0dd8198cd898a00f036e37b89be1843ab3a1943 (patch)
treed7948ef2b1db85f0d247bd0f513d8926bd124895 /pkgs
parentc312ae98a15aef70ba7eedbbd66c31fb8d705759 (diff)
downloadnixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar.gz
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar.bz2
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar.lz
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar.xz
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.tar.zst
nixpkgs-a0dd8198cd898a00f036e37b89be1843ab3a1943.zip
speedcrunch: mark broken on darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/science/math/speedcrunch/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/speedcrunch/default.nix b/pkgs/applications/science/math/speedcrunch/default.nix
index a4e15060fe3..239b5fd6d36 100644
--- a/pkgs/applications/science/math/speedcrunch/default.nix
+++ b/pkgs/applications/science/math/speedcrunch/default.nix
@@ -1,4 +1,4 @@
-{ mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }:
+{ stdenv, mkDerivation, lib, fetchFromBitbucket, cmake, qtbase, qttools }:
 
 mkDerivation rec {
   pname = "speedcrunch";
@@ -32,6 +32,6 @@ mkDerivation rec {
     maintainers = with maintainers; [ gebner j0hax ];
     inherit (qtbase.meta) platforms;
     # works with qt 5.6 and qt 5.8
-    broken = builtins.compareVersions qtbase.version "5.7.0" == 0;
+    broken = builtins.compareVersions qtbase.version "5.7.0" == 0 || stdenv.isDarwin;
   };
 }