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
100 lines
1.9 KiB
Nix
100 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
wrapGAppsHook4,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
appstream-glib,
|
|
desktop-file-utils,
|
|
glib,
|
|
gobject-introspection,
|
|
blueprint-compiler,
|
|
libxml2,
|
|
libnotify,
|
|
libadwaita,
|
|
libportal,
|
|
gettext,
|
|
librsvg,
|
|
tesseract5,
|
|
zbar,
|
|
gst_all_1,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gnome-frog";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TenderOwl";
|
|
repo = "Frog";
|
|
tag = version;
|
|
sha256 = "sha256-p1gqom9saNEIm6FXinEuIJtMGwjGfQx9uLpR2kb46Uw=";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
patches = [ ./update-compatible-with-non-flatpak-env.patch ];
|
|
postPatch = ''
|
|
chmod +x ./build-aux/meson/postinstall.py
|
|
patchShebangs ./build-aux/meson/postinstall.py
|
|
substituteInPlace ./build-aux/meson/postinstall.py \
|
|
--replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
|
|
substituteInPlace ./frog/language_manager.py --subst-var out
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
gettext
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
glib
|
|
wrapGAppsHook4
|
|
gobject-introspection
|
|
blueprint-compiler
|
|
libxml2
|
|
];
|
|
|
|
buildInputs = [
|
|
librsvg
|
|
libnotify
|
|
libadwaita
|
|
libportal
|
|
zbar
|
|
tesseract5
|
|
gst_all_1.gstreamer
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
loguru
|
|
nanoid
|
|
posthog
|
|
pygobject3
|
|
python-dateutil
|
|
pillow
|
|
pytesseract
|
|
pyzbar
|
|
gtts
|
|
];
|
|
|
|
# This is to prevent double-wrapping the package. We'll let
|
|
# Python do it by adding certain arguments inside of the
|
|
# wrapper instead.
|
|
dontWrapGApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://getfrog.app/";
|
|
description = "Intuitive text extraction tool (OCR) for GNOME desktop";
|
|
license = licenses.mit;
|
|
mainProgram = "frog";
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|