mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-13 19:00:19 +01:00
7 lines
209 B
Nix
7 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
|
|
''
|