nixpkgs/pkgs/development/compilers/mruby/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
913 B
Nix
Raw Normal View History

{ lib, stdenv, ruby, bison, rake, fetchFromGitHub }:
2018-08-09 22:24:56 +02:00
stdenv.mkDerivation rec {
2019-05-13 04:27:38 +02:00
pname = "mruby";
2021-03-12 04:10:25 +01:00
version = "3.0.0";
2018-08-09 22:24:56 +02:00
src = fetchFromGitHub {
owner = "mruby";
repo = "mruby";
rev = version;
2021-03-12 04:10:25 +01:00
sha256 = "sha256-C3K7ZooaOMa+V2HjxwiKxrrMb7ffl4QAgPsftRtb60c=";
2018-08-09 22:24:56 +02:00
};
2020-06-26 11:48:35 +02:00
nativeBuildInputs = [ ruby bison rake ];
2018-08-09 22:24:56 +02:00
# 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;
2018-08-09 22:24:56 +02:00
installPhase = ''
mkdir $out
2020-09-21 06:20:00 +02:00
cp -R include build/host/{bin,lib} $out
2018-08-09 22:24:56 +02:00
'';
doCheck = true;
meta = with lib; {
2018-08-09 22:24:56 +02:00
description = "An embeddable implementation of the Ruby language";
homepage = "https://mruby.org";
2018-08-09 22:24:56 +02:00
maintainers = [ maintainers.nicknovitski ];
license = licenses.mit;
platforms = platforms.unix;
};
}