mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 19:30:19 +01:00
8 lines
209 B
Nix
8 lines
209 B
Nix
|
|
{ lua, runCommand }:
|
||
|
|
runCommand "wow-note" { buildInputs = [ lua ]; } ''
|
||
|
|
mkdir -p $out/bin
|
||
|
|
cat ${./wow_note.lua}> $out/bin/wow-note
|
||
|
|
chmod +x $out/bin/wow-note
|
||
|
|
patchShebangs --host $out/bin/wow-note
|
||
|
|
''
|