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

37 lines
824 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-03-22 17:32:59 +00:00
stdenv.mkDerivation rec {
2022-01-08 19:20:58 +00:00
pname = "alsa-ucm-conf";
version = "1.2.6.3";
2020-03-22 17:32:59 +00:00
src = fetchurl {
2022-01-08 19:20:58 +00:00
url = "mirror://alsa/lib/${pname}-${version}.tar.bz2";
sha256 = "sha256-uKA6o4emJKL2XtwgG/d3QhGQtgUpqSCHZGgjr72Wxc0=";
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;
};
}