From 61a2045c9a2fd10ce061341209a5b3a649b6cc01 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 27 Apr 2020 22:19:14 +0200 Subject: pulseeffects: fix build Meson 0.54 is no longer able to find Boost: See https://github.com/NixOS/nixpkgs/issues/86131 --- pkgs/applications/audio/pulseeffects/default.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'pkgs/applications/audio/pulseeffects') diff --git a/pkgs/applications/audio/pulseeffects/default.nix b/pkgs/applications/audio/pulseeffects/default.nix index 2972849a2d417..eaedcb426b818 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"; -- cgit 1.4.1