Unverified Commit c38074f6 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

pamixer: fix build against icu76 (#451245)

parents f946089b 08d6410f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -21,6 +21,12 @@ stdenv.mkDerivation rec {
    hash = "sha256-LbRhsW2MiTYWSH6X9Pz9XdJdH9Na0QCO8CFmlzZmDjQ=";
  };

  postPatch = ''
    # icu76 headers (included via cxxopts) require c++17 features
    substituteInPlace meson.build \
      --replace-fail 'cpp_std=c++11' 'cpp_std=c++17'
  '';

  nativeBuildInputs = [
    pkg-config
    meson