2009-09-21 17:55:26 +02:00
|
|
|
{ writeScriptBin, stdenv, alsaPlugins }:
|
2018-08-20 21:11:29 +02:00
|
|
|
writeScriptBin "ap${if stdenv.hostPlatform.system == "i686-linux" then "32" else "64"}" ''
|
2009-09-21 17:55:26 +02:00
|
|
|
#/bin/sh
|
|
|
|
ALSA_PLUGIN_DIRS=${alsaPlugins}/lib/alsa-lib "$@"
|
|
|
|
''
|