mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-18 21:41:53 +03:00
6f8a8ee208
This overlay allows building bespoke binaries using mruby with a custom-made builder. This may evolve a bit with *actual* use.
13 lines
147 B
Nix
13 lines
147 B
Nix
{ mruby }:
|
|
|
|
mruby.builder {
|
|
pname = "hello-mruby";
|
|
inherit (mruby) version;
|
|
|
|
src = ./.;
|
|
|
|
buildPhase = ''
|
|
makeBin hello main.rb
|
|
'';
|
|
}
|