fstar: fix build on Darwin

This commit is contained in:
Vincent Laporte 2016-06-30 16:57:32 +01:00
parent dccac25d5f
commit cb3d2d0526

View File

@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
-C src/ocaml-output
'';
doCheck = true;
doCheck = !stdenv.isDarwin;
preCheck = "ulimit -s unlimited";
@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
description = "ML-like functional programming language aimed at program verification";
homepage = "https://www.fstar-lang.org";
license = licenses.asl20;
platforms = with platforms; linux;
platforms = with platforms; darwin ++ linux;
};
}