summary refs log tree commit diff
diff options
context:
space:
mode:
authorGabriel Fontes <hi@m7.rs>2023-04-29 23:45:57 -0300
committerGabriel Fontes <hi@m7.rs>2023-04-29 23:45:57 -0300
commit5a6f013602dafd0bb06af611c0e7891debdb4d3b (patch)
treed94ee58b7b85c32d770eca6397dbb010d8fa3f3f
parentd9ad436f9a3ee28ecb8f73723b201d0d84b6366b (diff)
downloadnixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar.gz
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar.bz2
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar.lz
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar.xz
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.tar.zst
nixpkgs-5a6f013602dafd0bb06af611c0e7891debdb4d3b.zip
mpd: remove pipewire API workaround
This is not needed anymore since 0.23.12, as mpd has updated to the new API changes
-rw-r--r--pkgs/servers/mpd/default.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/servers/mpd/default.nix b/pkgs/servers/mpd/default.nix
index 2ea8ee144a4..2e5da9bacef 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"
       ];