Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: db1a40a88298
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 96bb8ce13b04
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 1, 2018

  1. gImageReader: init at 3.2.99

    gImageReader is a GUI for tesseract, an optical character recognition engine.
    While the UI supports Qt/Gtk, I have only added the gtk one in the nix derivation.
    teto committed Nov 1, 2018
    Copy the full SHA
    efbf9af View commit details
  2. Merge pull request #46844 from teto/gImageReader

    gImageReader: init at 3.2.99 [rdy]
    jtojnar authored Nov 1, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    96bb8ce View commit details
Showing with 73 additions and 0 deletions.
  1. +71 −0 pkgs/applications/misc/gImageReader/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
71 changes: 71 additions & 0 deletions pkgs/applications/misc/gImageReader/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libuuid
, sane-backends, podofo, libjpeg, djvulibre, libxmlxx3, libzip, tesseract
, enchant, intltool, poppler, json-glib
, ninja
, python3

# Gtk deps
# upstream gImagereader supports Qt too
, gtk3, gobjectIntrospection, wrapGAppsHook
, gnome3, gtkspell3, gtkspellmm, cairomm
}:

let
variant = "gtk";
pythonEnv = python3.withPackages( ps: with ps;[ pygobject3 ] );
in
stdenv.mkDerivation rec {
name = "gImageReader-${version}";
version = "3.2.99";

src = fetchFromGitHub {
owner= "manisandro";
repo = "gImageReader";
rev = "v${version}";
sha256 = "19dbxq83j77lbvi10a8x0xxgw5hbsqyc852c196zzvmwk3km6pnc";
};

nativeBuildInputs = [
cmake ninja
intltool
pkgconfig
pythonEnv

# Gtk specific
wrapGAppsHook
gobjectIntrospection
];

buildInputs = [
enchant
libxmlxx3
libzip
libuuid
sane-backends
podofo
libjpeg
djvulibre
tesseract
poppler

# Gtk specific
gnome3.gtkmm
gtkspell3
gtkspellmm
gnome3.gtksourceview
gnome3.gtksourceviewmm
cairomm
json-glib
];

# interface type can be where <type> is either gtk, qt5, qt4
cmakeFlags = [ "-DINTERFACE_TYPE=${variant}" ];

meta = with stdenv.lib; {
description = "A simple Gtk/Qt front-end to tesseract-ocr";
homepage = https://github.com/manisandro/gImageReader;
license = licenses.gpl3Plus;
maintainers = with maintainers; [teto];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -7984,6 +7984,8 @@ with pkgs;

jython = callPackage ../development/interpreters/jython {};

gImageReader = callPackage ../applications/misc/gImageReader { };

guile-cairo = callPackage ../development/guile-modules/guile-cairo { };

guile-fibers = callPackage ../development/guile-modules/guile-fibers { };