chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / al / alsa-ucm-conf / package.nix
blob6224bafc6c54ff229b208ee93c6615c4c56f7ce3
1 { lib, stdenv, fetchurl, fetchpatch }:
3 stdenv.mkDerivation rec {
4   pname = "alsa-ucm-conf";
5   version = "1.2.11";
7   src = fetchurl {
8     url = "mirror://alsa/lib/alsa-ucm-conf-${version}.tar.bz2";
9     hash = "sha256-OHwBzzDioWdte49ysmgc8hmrynDdHsKp4zrdW/P+roE=";
10   };
12   patches = [
13     (fetchpatch {
14       # TODO: Remove this patch in the next package upgrade
15       name = "rt1318-fix-one.patch";
16       url = "https://github.com/alsa-project/alsa-ucm-conf/commit/7e22b7c214d346bd156131f3e6c6a5900bbf116d.patch";
17       hash = "sha256-5X0ANXTSRnC9jkvMLl7lA5TBV3d1nwWE57DP6TwliII=";
18     })
19     (fetchpatch {
20       # TODO: Remove this patch in the next package upgrade
21       name = "rt1318-fix-two.patch";
22       url = "https://github.com/alsa-project/alsa-ucm-conf/commit/4e0fcc79b7d517a957e12f02ecae5f3c69fa94dc.patch";
23       hash = "sha256-cuZPEEqb8+d1Ak2tA+LVEh6gtGt1X+LiAnfFYMIDCXY=";
24     })
25   ];
27   dontBuild = true;
29   installPhase = ''
30     runHook preInstall
32     mkdir -p $out/share/alsa
33     cp -r ucm ucm2 $out/share/alsa
35     runHook postInstall
36   '';
38   meta = with lib; {
39     homepage = "https://www.alsa-project.org/";
40     description = "ALSA Use Case Manager configuration";
42     longDescription = ''
43       The Advanced Linux Sound Architecture (ALSA) provides audio and
44       MIDI functionality to the Linux-based operating system.
45     '';
47     license = licenses.bsd3;
48     maintainers = [ maintainers.roastiek ];
49     platforms = platforms.linux;
50   };