2c2f1e37d4
It is deprecated and will be removed after 18.09.
6 lines
198 B
Nix
6 lines
198 B
Nix
{ writeScriptBin, stdenv, alsaPlugins }:
|
|
writeScriptBin "ap${if stdenv.hostPlatform.system == "i686-linux" then "32" else "64"}" ''
|
|
#/bin/sh
|
|
ALSA_PLUGIN_DIRS=${alsaPlugins}/lib/alsa-lib "$@"
|
|
''
|