Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
126 lines
3.7 KiB
Nix
126 lines
3.7 KiB
Nix
{
|
|
lib,
|
|
flutter324,
|
|
fetchFromGitHub,
|
|
webkitgtk_4_1,
|
|
sqlite,
|
|
libayatana-appindicator,
|
|
makeDesktopItem,
|
|
copyDesktopItems,
|
|
makeWrapper,
|
|
jdk17_headless,
|
|
}:
|
|
let
|
|
# fetch simple-icons directly to avoid cloning with submodules,
|
|
# which would also clone a whole copy of flutter
|
|
simple-icons = fetchFromGitHub (lib.importJSON ./simple-icons.json);
|
|
desktopId = "io.ente.auth";
|
|
in
|
|
flutter324.buildFlutterApplication rec {
|
|
pname = "ente-auth";
|
|
version = "4.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ente-io";
|
|
repo = "ente";
|
|
sparseCheckout = [ "mobile/apps/auth" ];
|
|
tag = "auth-v${version}";
|
|
hash = "sha256-VpxF6BMofCgMWcxsscbYC3uYse0QZyTBf84zN03leC4=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/mobile/apps/auth";
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
gitHashes = lib.importJSON ./git-hashes.json;
|
|
|
|
patches = [
|
|
# Disable update notifications and auto-update functionality
|
|
./0001-disable-updates.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
rmdir assets/simple-icons
|
|
ln -s ${simple-icons} assets/simple-icons
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
webkitgtk_4_1
|
|
sqlite
|
|
libayatana-appindicator
|
|
# The networking client used by ente-auth (native_dio_adapter)
|
|
# introduces a transitive dependency on Java, which technically
|
|
# is only needed for the Android implementation.
|
|
# Unfortunately, attempts to remove it from the build entirely were
|
|
# unsuccessful.
|
|
jdk17_headless # JDK version used by upstream CI
|
|
];
|
|
|
|
# https://github.com/juliansteenbakker/flutter_secure_storage/issues/965
|
|
CXXFLAGS = [ "-Wno-deprecated-literal-operator" ];
|
|
|
|
# Based on https://github.com/ente-io/ente/blob/main/auth/linux/packaging/rpm/make_config.yaml
|
|
# and https://github.com/ente-io/ente/blob/main/auth/linux/packaging/enteauth.appdata.xml
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = desktopId;
|
|
exec = "enteauth";
|
|
icon = "enteauth";
|
|
desktopName = "Ente Auth";
|
|
genericName = "Ente Authentication";
|
|
comment = "Open source 2FA authenticator, with end-to-end encrypted backups";
|
|
categories = [ "Utility" ];
|
|
keywords = [
|
|
"Authentication"
|
|
"2FA"
|
|
];
|
|
mimeTypes = [ "x-scheme-handler/enteauth" ];
|
|
startupNotify = false;
|
|
})
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/pixmaps
|
|
ln -s $out/app/ente-auth/data/flutter_assets/assets/icons/auth-icon.png $out/share/pixmaps/enteauth.png
|
|
|
|
install -Dm444 linux/packaging/enteauth.appdata.xml $out/share/metainfo/${desktopId}.metainfo.xml
|
|
substituteInPlace $out/share/metainfo/${desktopId}.metainfo.xml \
|
|
--replace-fail '<id>enteauth</id>' '<id>${desktopId}</id>' \
|
|
--replace-fail 'enteauth.desktop' '${desktopId}.desktop'
|
|
|
|
# For backwards compatibility
|
|
ln -s $out/bin/enteauth $out/bin/ente_auth
|
|
|
|
# Not required at runtime as it's only used on Android
|
|
rm $out/app/ente-auth/lib/libdartjni.so
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = {
|
|
description = "End-to-end encrypted, cross platform and free app for storing your 2FA codes with cloud backups";
|
|
longDescription = ''
|
|
Ente's 2FA app. An end-to-end encrypted, cross platform and free app for storing your 2FA codes with cloud backups. Works offline. You can even use it without signing up for an account if you don't want the cloud backups or multi-device sync.
|
|
'';
|
|
homepage = "https://ente.io/auth/";
|
|
changelog = "https://github.com/ente-io/ente/releases/tag/auth-v${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
niklaskorz
|
|
schnow265
|
|
zi3m5f
|
|
gepbird
|
|
iedame
|
|
];
|
|
mainProgram = "enteauth";
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
};
|
|
}
|