mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
11 lines
223 B
Nix
11 lines
223 B
Nix
{ 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 "$@"
|
|
''
|