nixpkgs/pkgs/os-specific/linux/alsa-tools/default.nix
R. RyanTM f180c93b95 alsaTools: 1.1.5 -> 1.1.6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/alsa-tools/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/as10k1 -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/as10k1 --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/echomixer -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/echomixer --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/echomixer help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/sscape_ctl -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/sscape_ctl --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/hdajacksensetest -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/hdajacksensetest --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/hdsploader -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/hdsploader --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/hdsploader help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/lo10k1 -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/lo10k1 --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/cspctl -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/cspctl --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/dl10k1 -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/dl10k1 --help’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/ld10k1 -h’ got 0 exit code
- ran ‘/nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6/bin/ld10k1 --help’ got 0 exit code
- found 1.1.6 with grep in /nix/store/b9byiplg5vv8gs42kl9kc24cqa0m3q6f-alsa-tools-1.1.6
- directory tree listing: https://gist.github.com/52572b1174e43598c17cb9679c3256f0
2018-04-11 01:33:03 -07:00

57 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 {
name = "alsa-tools-${version}";
version = "1.1.6";
src = fetchurl {
urls = [
"ftp://ftp.alsa-project.org/pub/tools/${name}.tar.bz2"
"http://alsa.cybermirror.org/tools/${name}.tar.bz2"
];
sha256 = "09rjb6hw1mn9y1jfdfj5djncgc2cr5wfps83k56rf6k4zg14v76n";
};
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 = {
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.
'';
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.fps ];
};
}