mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 18:21:41 +03:00
13 lines
294 B
Nix
13 lines
294 B
Nix
{ lib, runCommandNoCC, mobile-nixos }:
|
|
|
|
mobile-nixos.mkLVGUIApp {
|
|
name = "boot-recovery-menu.mrb";
|
|
executablePath = "libexec/boot-recovery-menu.mrb";
|
|
src = lib.cleanSource ./.;
|
|
rubyFiles = [
|
|
"${../lib}/hal/reboot_modes.rb"
|
|
"${../lib}/init/configuration.rb"
|
|
"main.rb"
|
|
];
|
|
}
|