pulseeffects: fix build

Meson 0.54 is no longer able to find Boost:

See https://github.com/NixOS/nixpkgs/issues/86131
This commit is contained in:
Jan Tojnar 2020-04-27 22:19:14 +02:00
parent 712026ead1
commit 61a2045c9a
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -99,6 +99,11 @@ in stdenv.mkDerivation rec {
)
'';
# Meson is no longer able to pick up Boost automatically.
# https://github.com/NixOS/nixpkgs/issues/86131
BOOST_INCLUDEDIR = "${stdenv.lib.getDev boost}/include";
BOOST_LIBRARYDIR = "${stdenv.lib.getLib boost}/lib";
meta = with stdenv.lib; {
description = "Limiter, compressor, reverberation, equalizer and auto volume effects for Pulseaudio applications";
homepage = "https://github.com/wwmm/pulseeffects";