tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
alsa-utils: wrap all binaries with ALSA_PLUGIN_DIR
Even Brenden
6 months ago
47d3fcdc
f576ed68
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
al
alsa-utils
package.nix
+3
-1
pkgs/by-name/al/alsa-utils/package.nix
···
66
66
procps
67
67
]
68
68
}"
69
69
-
wrapProgram $out/bin/aplay --set-default ALSA_PLUGIN_DIR ${plugin-dir}
69
69
+
for program in $out/bin/*; do
70
70
+
wrapProgram "$program" --set-default ALSA_PLUGIN_DIR "${plugin-dir}"
71
71
+
done
70
72
'';
71
73
72
74
postInstall = ''