authenticator: 4.1.6 -> 4.2.0

This commit is contained in:
Austin Butler 2023-03-19 13:23:00 -07:00
parent f967d005f7
commit 043b2de66e
2 changed files with 18 additions and 6 deletions

View file

@ -2,7 +2,6 @@
, stdenv , stdenv
, fetchFromGitLab , fetchFromGitLab
, appstream-glib , appstream-glib
, clang
, desktop-file-utils , desktop-file-utils
, meson , meson
, ninja , ninja
@ -14,7 +13,6 @@
, gst_all_1 , gst_all_1
, gtk4 , gtk4
, libadwaita , libadwaita
, libclang
, openssl , openssl
, pipewire , pipewire
, sqlite , sqlite
@ -24,20 +22,20 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "authenticator"; pname = "authenticator";
version = "4.1.6"; version = "4.2.0";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.gnome.org"; domain = "gitlab.gnome.org";
owner = "World"; owner = "World";
repo = "Authenticator"; repo = "Authenticator";
rev = version; rev = version;
hash = "sha256-fv7Np3haRCJABlJocKuu+1jevHYrdo+VyiQBpRmHs2g="; hash = "sha256-Nv4QE6gyh42Na/stAgTIapV8GQuUHCdL6IEO//J8dV8=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
hash = "sha256-8GddlDM1lU365GXdrKNhO331/y1p3Om5uZfVLy8TBGI="; hash = "sha256-IS9jdr19VvgX6M1OqM6rjE8veujZcwBuOTuDm5mDXso=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -80,5 +78,8 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ austinbutler ]; maintainers = with lib.maintainers; [ austinbutler ];
platforms = lib.platforms.linux; platforms = lib.platforms.linux;
# Fails to build on aarch64 with error
# "a label can only be part of a statement and a declaration is not a statement"
broken = stdenv.isLinux && stdenv.isAarch64;
}; };
} }

View file

@ -2811,7 +2811,18 @@ with pkgs;
audiowaveform = callPackage ../tools/audio/audiowaveform { }; audiowaveform = callPackage ../tools/audio/audiowaveform { };
authenticator = callPackage ../applications/misc/authenticator { }; authenticator = callPackage ../applications/misc/authenticator rec {
# Remove when GTK is upgraded past 4.8
# https://github.com/NixOS/nixpkgs/issues/216770
gtk4 = pkgs.gtk4.overrideAttrs (_: rec {
version = "4.9.4";
src = fetchurl {
url = "mirror://gnome/sources/gtk/${lib.versions.majorMinor version}/gtk-${version}.tar.xz";
sha256 = "sha256-kaOv1YQB1OXYHjCwjuPxE6R2j/EBQDNqcqMmx3JyvjA=";
};
});
wrapGAppsHook4 = wrapGAppsHook.override { gtk3 = gtk4; };
};
autoflake = with python3.pkgs; toPythonApplication autoflake; autoflake = with python3.pkgs; toPythonApplication autoflake;