mruby 3.1.0 -> 3.2.0 https://repology.org/metapackage/mruby/versions attrpath: mruby Checking auto update branch... No auto update branch exists Old version 3.1.0" not present in master derivation file with contents: { lib, stdenv, ruby, bison, rake, fetchFromGitHub }: stdenv.mkDerivation rec { pname = "mruby"; version = "3.2.0"; src = fetchFromGitHub { owner = "mruby"; repo = "mruby"; rev = version; sha256 = "sha256-MmrbWeg/G29YBvVrOtceTOZChrQ2kx9+apl7u7BiGjA="; }; nativeBuildInputs = [ ruby bison rake ]; # Necessary so it uses `gcc` instead of `ld` for linking. # https://github.com/mruby/mruby/blob/35be8b252495d92ca811d76996f03c470ee33380/tasks/toolchains/gcc.rake#L25 preBuild = if stdenv.isLinux then "unset LD" else null; installPhase = '' mkdir $out cp -R include build/host/{bin,lib} $out ''; doCheck = true; checkPhase = '' runHook preCheck rake test runHook postCheck ''; meta = with lib; { description = "An embeddable implementation of the Ruby language"; homepage = "https://mruby.org"; maintainers = [ maintainers.nicknovitski ]; license = licenses.mit; platforms = platforms.unix; }; }