summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-04-27 22:19:14 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-04-27 22:19:14 +0200
commit61a2045c9a2fd10ce061341209a5b3a649b6cc01 (patch)
tree78f44673a398fe26a397902171db35a7b23b2dc5 /pkgs
parent712026ead1fd2654a231f288260c81dea0ca80c4 (diff)
pulseeffects: fix build
Meson 0.54 is no longer able to find Boost: See https://github.com/NixOS/nixpkgs/issues/86131
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/pulseeffects/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/audio/pulseeffects/default.nix b/pkgs/applications/audio/pulseeffects/default.nix
index 2972849a2d41..eaedcb426b81 100644
--- a/pkgs/applications/audio/pulseeffects/default.nix
+++ b/pkgs/applications/audio/pulseeffects/default.nix
@@ -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";