1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 13:10:29 +03:00
mobile-nixos/boot/script-loader/default.nix
Samuel Dionne-Riel 16b96cb5fb boot/script-loader: Add mruby-zmq
This will be used by the upcoming progress-tracking feature.
2020-10-27 15:23:40 -04:00

66 lines
1.6 KiB
Nix

{ fetchurl
, mruby
, mrbgems
, writeShellScriptBin
, lib
}:
# 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-open3
mruby-process-clock_gettime
mruby-regexp-pcre
mruby-singleton
mruby-time-strftime
mruby-zmq
# Last as it may depend on any of the previous gems.
mruby-lvgui
# Though this needs to be the real last gem, as it has
# special significance during the build.
mruby-require
];
passthru = {
# Wraps an `mrb` applet into a runner script that uses this loader.
# Note that this is not used in stage-1.
# NOTE: `env` escapes values using `builtins.toJSON`. This escapes some pitfalls, while keeping variables expandable.
wrap = {name, applet, env ? {}}: (writeShellScriptBin name ''
${let
varList = lib.attrsets.mapAttrsToList (name: value: "${name}=${builtins.toJSON value}") env;
scriptEnv = lib.strings.concatStringsSep "\n" varList;
in scriptEnv}
exec ${loader}/bin/loader ${applet} "$@"
'').overrideAttrs(old: {
passthru = {
inherit applet;
};
});
};
};
in loader