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

37 lines
822 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-03-22 18:32:59 +01:00
stdenv.mkDerivation rec {
name = "alsa-ucm-conf-${version}";
2021-06-30 10:31:06 +02:00
version = "1.2.5.1";
2020-03-22 18:32:59 +01:00
src = fetchurl {
url = "mirror://alsa/lib/${name}.tar.bz2";
2021-06-30 10:31:06 +02:00
sha256 = "sha256-WEGkRBZty/R523UTA9vDVW9oUIWsfgDwyed1VnYZXZc=";
2020-03-22 18:32:59 +01: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 18:32:59 +01: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;
};
}