1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/boot/script-loader/default.nix

55 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl
, mruby
, mrbgems
, writeShellScriptBin
}:
# We need a reference to this package for the passthru `wrap` helper.
let loader = mruby.builder {
pname = "mobile-nixos-script-loader";
version = "0.2.0";
src = ./.;
# `main.rb` is where the magic happens.
buildPhase = ''
makeBin loader main.rb
'';
# This script loader handles all "applets" and scripts that will run during
# stage-1.
gems = with mrbgems; [
{ core = "mruby-exit"; }
{ core = "mruby-io"; }
{ core = "mruby-sleep"; }
{ core = "mruby-time"; }
mruby-dir
mruby-dir-glob
mruby-env
mruby-file-stat
mruby-json
mruby-logger
mruby-lvgui
mruby-open3
mruby-regexp-pcre
mruby-singleton
mruby-time-strftime
# This needs to be the last gem
mruby-require
];
passthru = {
# Wraps an `mrb` applet into a runner script that uses this loader.
# Note that this is not used in stage-1.
wrap = {name, applet}: (writeShellScriptBin name ''
exec ${loader}/bin/loader ${applet} "$@"
'').overrideAttrs(old: {
passthru = {
inherit applet;
};
});
};
};
in loader