8 lines
231 B
Nix
8 lines
231 B
Nix
|
{ config, pkgs, wine, program_files, ... }:
|
||
|
|
||
|
let exe = "Akai Professional/LPK25 Editor/Akai LPK25 Editor.exe";
|
||
|
in pkgs.writeScriptBin "akai_lpk25_editor" ''
|
||
|
#!${pkgs.dash}/bin/dash
|
||
|
${wine}/bin/wine "${program_files}/${exe}"
|
||
|
''
|