chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / al / alsa-topology-conf / package.nix
blob06d3a63dc468acd47e7de2ee8d70ef3d19cb80f2
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   name = "alsa-topology-conf-${version}";
5   version = "1.2.5.1";
7   src = fetchurl {
8     url = "mirror://alsa/lib/${name}.tar.bz2";
9     hash = "sha256-98W64VRavNc4JLyX9OcsNA4Rq+oYi6DxwG9eCtd2sXk=";
10   };
12   dontBuild = true;
14   installPhase = ''
15     runHook preInstall
17     mkdir -p $out/share/alsa
18     cp -r topology $out/share/alsa
20     runHook postInstall
21   '';
23   meta = with lib; {
24     homepage = "https://www.alsa-project.org/";
25     description = "ALSA topology configuration files";
27     longDescription = ''
28       The Advanced Linux Sound Architecture (ALSA) provides audio and
29       MIDI functionality to the Linux-based operating system.
30     '';
32     license = licenses.bsd3;
33     maintainers = [ maintainers.roastiek ];
34     platforms = platforms.linux;
35   };