chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / al / alsa-utils / package.nix
blobcc70a8578d76ca92598e0d27840dd52326793d04
1 { lib
2 , stdenv
3 , fetchurl
4 , fetchpatch
5 , alsa-lib
6 , alsa-plugins
7 , gettext
8 , makeWrapper
9 , ncurses
10 , libsamplerate
11 , pciutils
12 , which
13 , fftw
14 , pipewire
15 , withPipewireLib ? true
16 , symlinkJoin
19 let
20   plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire;
22   # Create a directory containing symlinks of all ALSA plugins.
23   # This is necessary because ALSA_PLUGIN_DIR must reference only one directory.
24   plugin-dir = symlinkJoin {
25     name = "all-plugins";
26     paths = map
27       (path: "${path}/lib/alsa-lib")
28       plugin-packages;
29   };
31 stdenv.mkDerivation rec {
32   pname = "alsa-utils";
33   version = "1.2.10";
35   src = fetchurl {
36     url = "mirror://alsa/utils/alsa-utils-${version}.tar.bz2";
37     hash = "sha256-EEti7H8Cp84WynefSBVhbfHMIZM1A3g6kQe1lE+DBjo=";
38   };
39   patches = [
40     # Backport fixes for musl libc. Remove on next release
41     (fetchpatch {
42       url = "https://github.com/alsa-project/alsa-utils/commit/8c229270f6bae83b705a03714c46067a7aa57b02.patch";
43       hash = "sha256-sUaBHY8EHf4805nF6tyNV5jYXcJf3O+r04VXFu4dUCE=";
44     })
45     (fetchpatch {
46       url = "https://github.com/alsa-project/alsa-utils/commit/0925ad7f09b2dc77015784f9ac2f5e34dd0dd5c3.patch";
47       hash = "sha256-bgGU9On82AUbOjo+KN6WfuhqUAWM87OHnKN7plpG284=";
48     })
49   ];
51   nativeBuildInputs = [ gettext makeWrapper ];
52   buildInputs = [ alsa-lib ncurses libsamplerate fftw ];
54   configureFlags = [ "--disable-xmlto" "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
56   installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
58   postFixup = ''
59     mv $out/bin/alsa-info.sh $out/bin/alsa-info
60     wrapProgram $out/bin/alsa-info --prefix PATH : "${lib.makeBinPath [ which pciutils ]}"
61     wrapProgram $out/bin/aplay --set-default ALSA_PLUGIN_DIR ${plugin-dir}
62   '';
64   meta = with lib; {
65     homepage = "http://www.alsa-project.org/";
66     description = "ALSA, the Advanced Linux Sound Architecture utils";
67     longDescription = ''
68       The Advanced Linux Sound Architecture (ALSA) provides audio and
69       MIDI functionality to the Linux-based operating system.
70     '';
72     license = licenses.gpl2;
73     platforms = platforms.linux;
74     maintainers = [ maintainers.AndersonTorres ];
75   };