1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4 name = "alsa-topology-conf-${version}";
8 url = "mirror://alsa/lib/${name}.tar.bz2";
9 hash = "sha256-98W64VRavNc4JLyX9OcsNA4Rq+oYi6DxwG9eCtd2sXk=";
17 mkdir -p $out/share/alsa
18 cp -r topology $out/share/alsa
24 homepage = "https://www.alsa-project.org/";
25 description = "ALSA topology configuration files";
28 The Advanced Linux Sound Architecture (ALSA) provides audio and
29 MIDI functionality to the Linux-based operating system.
32 license = licenses.bsd3;
33 maintainers = [ maintainers.roastiek ];
34 platforms = platforms.linux;