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:
parent
712026ead1
commit
61a2045c9a
1 changed files with 5 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue