mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 05:21:47 +03:00
25 lines
308 B
Nix
25 lines
308 B
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, mruby
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "boot-gui.mrb";
|
||
|
|
||
|
src = lib.cleanSource ./.;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
mruby
|
||
|
];
|
||
|
|
||
|
buildPhase = ''
|
||
|
mrbc -g -o gui.mrb \
|
||
|
$(find lib -type f -name '*.rb' | sort) \
|
||
|
main.rb
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mv -v gui.mrb $out
|
||
|
'';
|
||
|
}
|