mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
6 lines
185 B
Nix
6 lines
185 B
Nix
|
{ writeScriptBin, stdenv, alsaPlugins }:
|
||
|
writeScriptBin "ap${if stdenv.system == "i686-linux" then "32" else "64"}" ''
|
||
|
#/bin/sh
|
||
|
ALSA_PLUGIN_DIRS=${alsaPlugins}/lib/alsa-lib "$@"
|
||
|
''
|