4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
55 lines
1.7 KiB
Nix
55 lines
1.7 KiB
Nix
{ lib, 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.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/tools/${pname}-${version}.tar.bz2";
|
|
sha256 = "0jbkjmq038zapj66a7nkppdf644v2mwj581xbmh6k4i8w6mcglxz";
|
|
};
|
|
|
|
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 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 ];
|
|
};
|
|
}
|