Merge pull request #218207 from LeSuisse/mruby-3.2.0

mruby: 3.1.0 -> 3.2.0
This commit is contained in:
Robert Scott 2023-02-27 00:52:29 +00:00 committed by GitHub
commit 9157b0d978
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "mruby";
version = "3.1.0";
version = "3.2.0";
src = fetchFromGitHub {
owner = "mruby";
repo = "mruby";
rev = version;
sha256 = "0gnzip7qfadnl0r1k8bpc9a6796sy503h77ggds02wrz7mpq32nf";
sha256 = "sha256-MmrbWeg/G29YBvVrOtceTOZChrQ2kx9+apl7u7BiGjA=";
};
nativeBuildInputs = [ ruby bison rake ];
@ -24,6 +24,14 @@ stdenv.mkDerivation rec {
doCheck = true;
checkPhase = ''
runHook preCheck
rake test
runHook postCheck
'';
meta = with lib; {
description = "An embeddable implementation of the Ruby language";
homepage = "https://mruby.org";