From f1a55a6c3f9d301c6a0142527422c05f624acb42 Mon Sep 17 00:00:00 2001 From: Austin Butler Date: Thu, 20 Apr 2023 16:28:03 -0700 Subject: [PATCH] authenticator: 4.2.0 -> 4.3.0 --- pkgs/applications/misc/authenticator/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/authenticator/default.nix b/pkgs/applications/misc/authenticator/default.nix index 5f6d1c419567..34f75268cf42 100644 --- a/pkgs/applications/misc/authenticator/default.nix +++ b/pkgs/applications/misc/authenticator/default.nix @@ -22,20 +22,20 @@ stdenv.mkDerivation rec { pname = "authenticator"; - version = "4.2.0"; + version = "4.3.0"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "World"; repo = "Authenticator"; rev = version; - hash = "sha256-Nv4QE6gyh42Na/stAgTIapV8GQuUHCdL6IEO//J8dV8="; + hash = "sha256-WR5gXGry4wti2M4D/IQvwI7OSak1p+O+XAhr01hdv2Q="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-IS9jdr19VvgX6M1OqM6rjE8veujZcwBuOTuDm5mDXso="; + hash = "sha256-ZVDKTJojblVCbbdtnqcL+UVW1vkmu99AXCbgyCGNHCM="; }; nativeBuildInputs = [ @@ -67,11 +67,6 @@ 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";