pass jackaudio to alsaPlugins also adding convinient wrapper script

svn path=/nixpkgs/trunk/; revision=17340
This commit is contained in:
Marc Weber
2009-09-21 15:55:26 +00:00
parent 1d7de3605f
commit 8398a33112
3 changed files with 11 additions and 4 deletions
@@ -0,0 +1,5 @@
{ writeScriptBin, stdenv, alsaPlugins }:
writeScriptBin "ap${if stdenv.system == "i686-linux" then "32" else "64"}" ''
#/bin/sh
ALSA_PLUGIN_DIRS=${alsaPlugins}/lib/alsa-lib "$@"
''