depot/third_party/nixpkgs/pkgs/os-specific/linux/alsa-plugins/wrapper.nix

5 lines
197 B
Nix
Raw Normal View History

{ writeShellScriptBin, stdenv, alsaPlugins }:
writeShellScriptBin "ap${if stdenv.hostPlatform.system == "i686-linux" then "32" else "64"}" ''
ALSA_PLUGIN_DIRS=${alsaPlugins}/lib/alsa-lib "$@"
''