nixpkgs/pkgs/by-name/al/alsa-topology-conf/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
825 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2020-03-22 18:36:40 +01:00
stdenv.mkDerivation rec {
name = "alsa-topology-conf-${version}";
2021-06-30 09:50:46 +02:00
version = "1.2.5.1";
2020-03-22 18:36:40 +01:00
src = fetchurl {
url = "mirror://alsa/lib/${name}.tar.bz2";
2021-06-30 09:50:46 +02:00
sha256 = "sha256-98W64VRavNc4JLyX9OcsNA4Rq+oYi6DxwG9eCtd2sXk=";
2020-03-22 18:36:40 +01:00
};
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/share/alsa
cp -r topology $out/share/alsa
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.alsa-project.org/";
2020-03-22 18:36:40 +01:00
description = "ALSA topology configuration files";
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;
};
}