Unverified Commit 3e57f19d authored by Stefan Frijters's avatar Stefan Frijters
Browse files

alsa-utils: fix PATH for alsa-info

The script wants to use the 'tree' command and requires 'amixer' to run at all, which
comes from the package itself.
parent 9e9486e2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@
  libsamplerate,
  pciutils,
  procps,
  tree,
  which,
  fftw,
  pipewire,
@@ -64,8 +65,9 @@ stdenv.mkDerivation (finalAttrs: {
        which
        pciutils
        procps
        tree
      ]
    }"
    }" --prefix PATH : $out/bin
    for program in $out/bin/*; do
        wrapProgram "$program" --set-default ALSA_PLUGIN_DIR "${plugin-dir}"
    done