mruby: Removes a test that fails in the sandbox.

This commit is contained in:
Samuel Dionne-Riel
2018-08-09 19:12:34 -04:00
parent f847155014
commit 53bfb47e1d
2 changed files with 42 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
sha256 = "0pw72acbqgs4n1qa297nnja23v9hxz9g7190yfx9kwm7mgbllmww";
};
patches = [
./0001-Disables-IO-isatty-test-for-sandboxed-builds.patch
];
nativeBuildInputs = [ ruby bison ];
# Necessary so it uses `gcc` instead of `ld` for linking.
@@ -22,6 +26,8 @@ stdenv.mkDerivation rec {
cp -R build/host/{bin,lib} $out
'';
doCheck = true;
meta = with stdenv.lib; {
description = "An embeddable implementation of the Ruby language";
homepage = https://mruby.org;