[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: gimagereader: Remove input labels.
From: |
guix-commits |
Subject: |
02/03: gnu: gimagereader: Remove input labels. |
Date: |
Mon, 7 Feb 2022 12:15:51 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit b73d8f07b3d18862984cc5ee42c44d0fb1399fc3
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Feb 7 18:13:36 2022 +0100
gnu: gimagereader: Remove input labels.
* gnu/packages/ocr.scm (gimagereader)[native-inputs, inputs]: Remove labels.
---
gnu/packages/ocr.scm | 24 +++++++++++-------------
1 file changed, 11 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/ocr.scm b/gnu/packages/ocr.scm
index 7f12907927..73f63f704b 100644
--- a/gnu/packages/ocr.scm
+++ b/gnu/packages/ocr.scm
@@ -157,20 +157,18 @@ monospaced or proportional.")
`(#:tests? #f ;no test
#:configure-flags (list "-DENABLE_VERSIONCHECK=0")))
(native-inputs
- `(("gettext" ,gettext-minimal)
- ("intltool" ,intltool)
- ("pkg-config" ,pkg-config)))
+ (list gettext-minimal intltool pkg-config))
(inputs
- `(("enchant" ,enchant)
- ("djvulibre" ,djvulibre)
- ("leptonica" ,leptonica)
- ("podofo" ,podofo)
- ("poppler-qt5" ,poppler-qt5)
- ("sane-backends" ,sane-backends)
- ("qtbase" ,qtbase-5)
- ("qtspell" ,qtspell)
- ("quazip" ,quazip-0)
- ("tesseract" ,tesseract-ocr)))
+ (list enchant
+ djvulibre
+ leptonica
+ podofo
+ poppler-qt5
+ sane-backends
+ qtbase-5
+ qtspell
+ quazip-0
+ tesseract-ocr))
(home-page "https://github.com/manisandro/gImageReader")
(synopsis "Qt front-end to tesseract-ocr")
(description