1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 21:11:34 +03:00
mobile-nixos/boot/init/default.nix
2020-02-03 16:19:10 -05:00

21 lines
302 B
Nix

{ mruby, mrbgems }:
mruby.builder {
pname = "mobile-nixos-init";
version = "0.0-unstable";
src = ./.;
buildPhase = ''
makeBin init main.rb
'';
gems = with mrbgems; [
{ core = "mruby-io"; }
{ core = "mruby-sleep"; }
mruby-regexp-pcre
mruby-env
mruby-open3
];
}