033cfcce15
libjack2 doesn't cross-compile, see https://github.com/NixOS/nixpkgs/issues/96548. The pulseaudio NixOS module uses pkgs.alsaPlugins to create its asound.conf, so let's make sure that one can be built when cross-compiling.
28 lines
859 B
Nix
28 lines
859 B
Nix
{ stdenv, fetchurl, lib, pkgconfig, alsaLib, libogg, libpulseaudio ? null, libjack2 ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alsa-plugins";
|
|
version = "1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/plugins/${pname}-${version}.tar.bz2";
|
|
sha256 = "0z9k3ssbfk2ky2w13avgyf202j1drsz9sv3834bp33cj1i2hc3qw";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
# ToDo: a52, etc.?
|
|
buildInputs =
|
|
[ alsaLib libogg ]
|
|
++ lib.optional (libpulseaudio != null) libpulseaudio
|
|
# https://github.com/NixOS/nixpkgs/issues/96548
|
|
++ lib.optional (libjack2 != null && (stdenv.buildPlatform == stdenv.hostPlatform)) libjack2;
|
|
|
|
meta = with lib; {
|
|
description = "Various plugins for ALSA";
|
|
homepage = "http://alsa-project.org/";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ maintainers.marcweber ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|