1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-18 05:21:47 +03:00
mobile-nixos/boot/gui/default.nix

25 lines
308 B
Nix
Raw Normal View History

{ 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
'';
}