Merge pull request #212003 from austinbutler/authenticator-fix-pipewire

authenticator: fix incompatibility with pipewire 0.3.64
This commit is contained in:
Robert Schütz
2023-01-21 20:05:10 -08:00
committed by GitHub
@@ -69,11 +69,16 @@ stdenv.mkDerivation rec {
zbar
];
# https://gitlab.gnome.org/World/Authenticator/-/issues/362
preBuild = ''
export BINDGEN_EXTRA_CLANG_ARGS="$BINDGEN_EXTRA_CLANG_ARGS -DPW_ENABLE_DEPRECATED"
'';
meta = {
description = "Two-factor authentication code generator for GNOME";
homepage = "https://gitlab.gnome.org/World/Authenticator";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
maintainers = with lib.maintainers; [ austinbutler ];
platforms = lib.platforms.linux;
};
}