nixpkgs/pkgs/os-specific/linux/alsa-ucm-conf/default.nix

37 lines
821 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-03-22 17:32:59 +00:00
stdenv.mkDerivation rec {
name = "alsa-ucm-conf-${version}";
2020-10-22 01:16:04 +01:00
version = "1.2.4";
2020-03-22 17:32:59 +00:00
src = fetchurl {
url = "mirror://alsa/lib/${name}.tar.bz2";
2020-10-22 01:16:04 +01:00
sha256 = "0h6kzi1cfdqyxp4pwpqh5wb89c8s9wrgix315bvamffwfxf56frc";
2020-03-22 17:32:59 +00:00
};
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/alsa
cp -r ucm ucm2 $out/share/alsa
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.alsa-project.org/";
2020-03-22 17:32:59 +00:00
description = "ALSA Use Case Manager configuration";
longDescription = ''
The Advanced Linux Sound Architecture (ALSA) provides audio and
MIDI functionality to the Linux-based operating system.
'';
license = licenses.bsd3;
maintainers = [ maintainers.roastiek ];
platforms = platforms.linux;
};
}