From 5a6f013602dafd0bb06af611c0e7891debdb4d3b Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Sat, 29 Apr 2023 23:45:57 -0300 Subject: [PATCH] mpd: remove pipewire API workaround This is not needed anymore since 0.23.12, as mpd has updated to the new API changes --- pkgs/servers/mpd/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/servers/mpd/default.nix b/pkgs/servers/mpd/default.nix index 2ea8ee144a49..2e5da9bacef3 100644 --- a/pkgs/servers/mpd/default.nix +++ b/pkgs/servers/mpd/default.nix @@ -165,9 +165,6 @@ let outputs = [ "out" "doc" ] ++ lib.optional (builtins.elem "documentation" features_) "man"; - # FIXME: workaround for Pipewire 0.3.64 deprecated API change, remove when fixed upstream - env.NIX_CFLAGS_COMPILE = toString [ "-DPW_ENABLE_DEPRECATED" ]; - CXXFLAGS = lib.optionals stdenv.isDarwin [ "-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0" ];