forked from mirrors/nixpkgs
381964e9a3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/alsa-plugins/versions The alsalconfdir has been fixed upstream in: https://git.alsa-project.org/?p=alsa-plugins.git;a=blobdiff;f=configure.ac;h=1be4a70c803c367528aaf07839430801bc7f0c78;hp=5b80585fa54257266de4c59adcfd7858156f9abd;hb=2d9f140caa63fbf79d6a0823e293110b97229895;hpb=613ac0c3483fb9bc0d010e8ed4ad50191500d641 Co-authored-by: Robin Gloster <mail@glob.in>
26 lines
726 B
Nix
26 lines
726 B
Nix
{ stdenv, fetchurl, lib, pkgconfig, alsaLib, libogg, libpulseaudio ? null, libjack2 ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alsa-plugins";
|
|
version = "1.1.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/plugins/${pname}-${version}.tar.bz2";
|
|
sha256 = "152r82i6f97gfilfgiax5prxkd4xlcipciv8ha8yrk452qbxyxvz";
|
|
};
|
|
|
|
# ToDo: a52, etc.?
|
|
buildInputs =
|
|
[ pkgconfig alsaLib libogg ]
|
|
++ lib.optional (libpulseaudio != null) libpulseaudio
|
|
++ lib.optional (libjack2 != null) libjack2;
|
|
|
|
meta = with lib; {
|
|
description = "Various plugins for ALSA";
|
|
homepage = http://alsa-project.org/;
|
|
license = licenses.lgpl21;
|
|
maintainers = [maintainers.marcweber];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|