fstar: fix build on Darwin
This commit is contained in:
parent
dccac25d5f
commit
cb3d2d0526
|
@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
|
||||||
-C src/ocaml-output
|
-C src/ocaml-output
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
preCheck = "ulimit -s unlimited";
|
preCheck = "ulimit -s unlimited";
|
||||||
|
|
||||||
|
@ -75,6 +75,6 @@ stdenv.mkDerivation rec {
|
||||||
description = "ML-like functional programming language aimed at program verification";
|
description = "ML-like functional programming language aimed at program verification";
|
||||||
homepage = "https://www.fstar-lang.org";
|
homepage = "https://www.fstar-lang.org";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; darwin ++ linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue