{ lib, flutter324, python3, fetchFromGitHub, pcre2, libnotify, libappindicator, pkg-config, gnome-screenshot, makeWrapper, removeReferencesTo, }: flutter324.buildFlutterApplication rec { pname = "yubioath-flutter"; version = "7.1.1"; src = fetchFromGitHub { owner = "Yubico"; repo = "yubioath-flutter"; rev = version; hash = "sha256-MpY6yJvGBaFiEwuGEme2Uvyi5INCYhZJHyaRpC9pCuk="; }; passthru.helper = python3.pkgs.callPackage ./helper.nix { inherit src version meta; }; pubspecLock = lib.importJSON ./pubspec.lock.json; gitHashes = { window_manager = "sha256-mLX51nbWFccsAfcqLQIYDjYz69y9wAz4U1RZ8TIYSj0="; }; postPatch = '' rm -f pubspec.lock substituteInPlace linux/CMakeLists.txt \ --replace-fail "../build/linux/helper" "${passthru.helper}/libexec/helper" ''; preInstall = '' # Make sure we have permission to delete things CMake has copied in to our build directory from elsewhere. chmod -R +w build ''; postInstall = '' # Swap the authenticator-helper symlink with the correct symlink. ln -fs "${passthru.helper}/bin/authenticator-helper" "$out/app/$pname/helper/authenticator-helper" # Move the icon. mkdir $out/share/icons mv $out/app/$pname/linux_support/com.yubico.yubioath.png $out/share/icons # Cleanup. rm -rf \ "$out/app/$pname/README.adoc" \ "$out/app/$pname/desktop_integration.sh" \ "$out/app/$pname/linux_support" \ $out/bin/* # We will repopulate this directory later. # Symlink binary. ln -sf "$out/app/$pname/authenticator" "$out/bin/yubioath-flutter" # Set the correct path to the binary in desktop file. substituteInPlace "$out/share/applications/com.yubico.authenticator.desktop" \ --replace "@EXEC_PATH/authenticator" "$out/bin/yubioath-flutter" \ --replace "@EXEC_PATH/linux_support/com.yubico.yubioath.png" "$out/share/icons/com.yubico.yubioath.png" ''; # Needed for QR scanning to work extraWrapProgramArgs = '' --prefix PATH : ${lib.makeBinPath [ gnome-screenshot ]} ''; nativeBuildInputs = [ makeWrapper removeReferencesTo pkg-config ]; buildInputs = [ pcre2 libnotify libappindicator ]; meta = with lib; { description = "Yubico Authenticator for Desktop"; mainProgram = "yubioath-flutter"; homepage = "https://github.com/Yubico/yubioath-flutter"; license = licenses.asl20; maintainers = with maintainers; [ lukegb ]; platforms = [ "x86_64-linux" "aarch64-linux" ]; }; }