2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, alsaLib, pkg-config, gtk2, gtk3, fltk13 }:
|
2016-09-11 21:24:51 +00:00
|
|
|
# Comes from upstream as as bundle of several tools,
|
|
|
|
# some use gtk2, some gtk3 (and some even fltk13).
|
2015-10-13 09:33:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "alsa-tools";
|
2020-04-17 11:48:09 +00:00
|
|
|
version = "1.2.2";
|
2015-10-13 09:33:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://alsa/tools/${pname}-${version}.tar.bz2";
|
2020-04-17 11:48:09 +00:00
|
|
|
sha256 = "0jbkjmq038zapj66a7nkppdf644v2mwj581xbmh6k4i8w6mcglxz";
|
2015-10-13 09:33:52 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ alsaLib gtk2 gtk3 fltk13 ];
|
2015-10-13 09:33:52 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
export tools="as10k1 hda-verb hdspmixer echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control"
|
|
|
|
# export tools="as10k1 hda-verb hdspmixer qlo10k1 seq usx2yloader echomixer hdajackretask hdspconf hwmixvolume mixartloader rmedigicontrol sscape_ctl vxloader envy24control hdajacksensetest hdsploader ld10k1 pcxhrloader sb16_csp us428control"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
for tool in $tools; do
|
|
|
|
echo "Tool: $tool:"
|
|
|
|
cd "$tool"; ./configure --prefix="$out"; cd -
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
for tool in $tools; do
|
|
|
|
cd "$tool"; make; cd -
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
for tool in $tools; do
|
|
|
|
cd "$tool"; make install; cd -
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.alsa-project.org/";
|
2015-10-13 09:33:52 +00:00
|
|
|
description = "ALSA, the Advanced Linux Sound Architecture tools";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
|
|
MIDI functionality to the Linux-based operating system.
|
|
|
|
'';
|
|
|
|
|
2018-08-14 11:29:25 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.fps ];
|
2015-10-13 09:33:52 +00:00
|
|
|
};
|
|
|
|
}
|