mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-17 21:11:34 +03:00
21 lines
302 B
Nix
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
|
|
];
|
|
}
|