2
0
genodepkgs/apps/genode-make/default.nix
Emery Hemingway ad07de94bf Add genode-make app
A demonstration of invoking a flake function from within an app.
2020-03-18 19:40:59 +05:30

7 lines
164 B
Nix

{ writeScriptBin, runtimeShell }:
writeScriptBin "genode-make" ''
#!${runtimeShell}
exec nix build -f ${./make.nix} --argstr target $@
'' + "/bin/genode-make"