14 stdenv.mkDerivation (finalAttrs: {
19 url = "mirror://alsa/tools/alsa-tools-${finalAttrs.version}.tar.bz2";
20 hash = "sha256-CRXJY0pQL9NlXKnFdNJZvJ55mD2R1Frqz/bzwA+K4+k=";
36 env.TOOLSET = lib.concatStringsSep " " [
46 # "hwmixvolume" # Requires old, unmaintained, abandoned EOL Python 2
48 # "qlo10k1" # needs Qt
53 # "seq" # mysterious configure error
56 # "usx2yloader" # tries to create /etc/hotplug/usb
63 for tool in $TOOLSET; do
64 echo "Configuring $tool:"
66 ./configure --prefix="$out"
76 for tool in $TOOLSET; do
77 echo "Building $tool:"
89 for tool in $TOOLSET; do
90 echo "Installing $tool:"
102 wrapProgram $out/bin/hdajackretask \
103 --prefix PATH : ${lib.makeBinPath [ psmisc ]}
109 homepage = "http://www.alsa-project.org/";
110 description = "ALSA Tools";
111 license = lib.licenses.gpl2Plus;
113 platforms = lib.platforms.linux;