mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ stdenv, fetchurl, alsaLib, pkgconfig, gtk2, gtk3, fltk13 }:
|
|
# Comes from upstream as as bundle of several tools,
|
|
# some use gtk2, some gtk3 (and some even fltk13).
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alsa-tools";
|
|
version = "1.1.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/tools/${pname}-${version}.tar.bz2";
|
|
sha256 = "1xjfghr9s0j6n91kgs95cc4r6qrjsgc4yj2w0nir3xpnm0l36950";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ alsaLib gtk2 gtk3 fltk13 ];
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.alsa-project.org/;
|
|
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.
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.fps ];
|
|
};
|
|
}
|