13 stdenv.mkDerivation (finalAttrs: {
18 url = "mirror://alsa/tools/alsa-tools-${finalAttrs.version}.tar.bz2";
19 hash = "sha256-CRXJY0pQL9NlXKnFdNJZvJ55mD2R1Frqz/bzwA+K4+k=";
35 env.TOOLSET = lib.concatStringsSep " " [
45 # "hwmixvolume" # Requires old, unmaintained, abandoned EOL Python 2
47 # "qlo10k1" # needs Qt
52 # "seq" # mysterious configure error
55 # "usx2yloader" # tries to create /etc/hotplug/usb
62 for tool in $TOOLSET; do
63 echo "Configuring $tool:"
65 ./configure --prefix="$out"
75 for tool in $TOOLSET; do
76 echo "Building $tool:"
88 for tool in $TOOLSET; do
89 echo "Installing $tool:"
101 wrapProgram $out/bin/hdajackretask \
102 --prefix PATH : ${lib.makeBinPath [ psmisc ]}
108 homepage = "http://www.alsa-project.org/";
109 description = "ALSA Tools";
110 license = lib.licenses.gpl2Plus;
111 maintainers = [ lib.maintainers.AndersonTorres ];
112 platforms = lib.platforms.linux;