summary refs log tree commit diff
path: root/pkgs/os-specific/linux/alsa-project/alsa-plugins/wrapper.nix
blob: 992f4886e262cd49f1ea0227b76e95d40c152b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv
, alsa-plugins
, writeShellScriptBin
}:
let
  arch = if stdenv.hostPlatform.system == "i686-linux" then "32" else "64";
in
writeShellScriptBin "ap${arch}" ''
  ALSA_PLUGIN_DIRS=${alsa-plugins}/lib/alsa-lib "$@"
''