From 7d4abc2b9413f699559c2cfe0145fd27859cc22e Mon Sep 17 00:00:00 2001 From: Marco Rebhan Date: Sun, 20 Nov 2022 16:11:03 +0100 Subject: [PATCH] crystal: Unmark 1.2 broken for aarch64-darwin The package actually builds and runs fine on this platform. --- pkgs/development/compilers/crystal/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/crystal/default.nix b/pkgs/development/compilers/crystal/default.nix index 88274ef73c94..b3fa16f64134 100644 --- a/pkgs/development/compilers/crystal/default.nix +++ b/pkgs/development/compilers/crystal/default.nix @@ -225,7 +225,7 @@ let }; meta = with lib; { - broken = stdenv.isDarwin; + broken = stdenv.isDarwin && (isAarch64Darwin -> lib.versionOlder version "1.2.0"); description = "A compiled language with Ruby like syntax and type inference"; homepage = "https://crystal-lang.org/"; license = licenses.asl20;