Merge pull request #254034 from doronbehar/pkg/gnome-frog

gnome-frog: 1.3.0 -> 1.4.2

authored by

Doron Behar and committed by
GitHub
7c6dc82d 6f50091d

+10 -2
+10 -2
pkgs/applications/misc/gnome-frog/default.nix
··· 11 , desktop-file-utils 12 , glib 13 , gobject-introspection 14 , libnotify 15 , libadwaita 16 , libportal ··· 18 , librsvg 19 , tesseract5 20 , zbar 21 }: 22 23 python3Packages.buildPythonApplication rec { 24 pname = "gnome-frog"; 25 - version = "1.3.0"; 26 27 src = fetchFromGitHub { 28 owner = "TenderOwl"; 29 repo = "Frog"; 30 rev = "refs/tags/${version}"; 31 - sha256 = "sha256-ErDHrdD9UZxOIGwgN5eakY6vhNvE6D9SoRYXZhzmYX4="; 32 }; 33 34 format = "other"; ··· 52 glib 53 wrapGAppsHook4 54 gobject-introspection 55 ]; 56 57 buildInputs = [ ··· 61 libportal 62 zbar 63 tesseract5 64 ]; 65 66 propagatedBuildInputs = with python3Packages; [ ··· 68 pillow 69 pytesseract 70 pyzbar 71 ]; 72 73 # This is to prevent double-wrapping the package. We'll let ··· 83 description = 84 "Intuitive text extraction tool (OCR) for GNOME desktop"; 85 license = licenses.mit; 86 maintainers = with maintainers; [ foo-dogsquared ]; 87 platforms = platforms.linux; 88 };
··· 11 , desktop-file-utils 12 , glib 13 , gobject-introspection 14 + , blueprint-compiler 15 + , libxml2 16 , libnotify 17 , libadwaita 18 , libportal ··· 20 , librsvg 21 , tesseract5 22 , zbar 23 + , gst_all_1 24 }: 25 26 python3Packages.buildPythonApplication rec { 27 pname = "gnome-frog"; 28 + version = "1.4.2"; 29 30 src = fetchFromGitHub { 31 owner = "TenderOwl"; 32 repo = "Frog"; 33 rev = "refs/tags/${version}"; 34 + sha256 = "sha256-w/ENUhJt7bYy5htBLolb/HysK8/scRaPQX5qEezQcXY="; 35 }; 36 37 format = "other"; ··· 55 glib 56 wrapGAppsHook4 57 gobject-introspection 58 + blueprint-compiler 59 + libxml2 60 ]; 61 62 buildInputs = [ ··· 66 libportal 67 zbar 68 tesseract5 69 + gst_all_1.gstreamer 70 ]; 71 72 propagatedBuildInputs = with python3Packages; [ ··· 74 pillow 75 pytesseract 76 pyzbar 77 + gtts 78 ]; 79 80 # This is to prevent double-wrapping the package. We'll let ··· 90 description = 91 "Intuitive text extraction tool (OCR) for GNOME desktop"; 92 license = licenses.mit; 93 + mainProgram = "frog"; 94 maintainers = with maintainers; [ foo-dogsquared ]; 95 platforms = platforms.linux; 96 };