1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 13:10:29 +03:00
mobile-nixos/boot/error/default.nix
Samuel Dionne-Riel bb6a7ddc5f boot/error: Add a tangible derivation
This also allows us to add library files.
2020-11-12 23:13:20 -05:00

23 lines
549 B
Nix

{ runCommand
, lib
, mruby
}:
# mkDerivation will append something like -aarch64-unknown-linux-gnu to the
# derivation name with cross, which will break the mruby code loading.
# Since we don't need anything from mkDerivation, really, let's use runCommand.
runCommand "boot-error.mrb" {
src = lib.cleanSource ./.;
lib = lib.cleanSource ../recovery-menu/lib;
nativeBuildInputs = [
mruby
];
} ''
mrbc \
-o $out \
$(find $lib -type f -name '*.rb' | sort) \
$(find $src/lib -type f -name '*.rb' | sort) \
$src/main.rb
''