gnu: calibre: Wrap QTWEBENGINEPROCESS_PATH.
[jackhill/guix/guix.git] / gnu / packages / aidc.scm
CommitLineData
091befba
JD
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 John Darringon <jmd@gnu.org>
cac674d9 3;;; Copyright © 2016, 2020 Efraim Flashner <efraim@flashner.co.il>
7ade8022 4;;; Copyright © 2017 Hartmut Goebel <h.goebel@crazy-compilers.com>
b9a807b7 5;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
7293e3db 6;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
d41e25c0 7;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
091befba
JD
8;;;
9;;; This file is part of GNU Guix.
10;;;
11;;; GNU Guix is free software; you can redistribute it and/or modify it
12;;; under the terms of the GNU General Public License as published by
13;;; the Free Software Foundation; either version 3 of the License, or (at
14;;; your option) any later version.
15;;;
16;;; GNU Guix is distributed in the hope that it will be useful, but
17;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24(define-module (gnu packages aidc)
25 #:use-module (gnu packages)
b5b73a82 26 #:use-module ((guix licenses) #:prefix license:)
091befba
JD
27 #:use-module (guix packages)
28 #:use-module (guix download)
b9a807b7
TGR
29 #:use-module (guix git-download)
30 #:use-module (gnu packages autotools)
9068eb16 31 #:use-module (gnu packages check)
7293e3db
GLV
32 #:use-module (gnu packages imagemagick)
33 #:use-module (gnu packages glib)
34 #:use-module (gnu packages gtk)
20b1d19e 35 #:use-module (gnu packages image)
7293e3db
GLV
36 #:use-module (gnu packages pkg-config)
37 #:use-module (gnu packages python)
38 #:use-module (gnu packages python-xyz)
39 #:use-module (gnu packages qt)
40 #:use-module (gnu packages video)
9068eb16 41 #:use-module (guix build-system cmake)
091befba
JD
42 #:use-module (guix build-system gnu))
43
9068eb16
RG
44(define-public zxing-cpp
45 (package
46 (name "zxing-cpp")
47 (version "1.0.8")
48 (source
49 (origin
50 (method git-fetch)
51 (uri
52 (git-reference
53 (url "https://github.com/nu-book/zxing-cpp.git")
54 (commit (string-append "v" version))))
55 (file-name (git-file-name name version))
56 (sha256
57 (base32 "011sq8wcjfxbnd8sj6bf2fgkamlp8gj6q835g61c952npvwsnl71"))))
58 (native-inputs
59 `(("googletest-source" ,(package-source googletest))))
60 (build-system cmake-build-system)
61 (arguments
62 `(#:out-of-source? #f
63 #:phases
64 (modify-phases %standard-phases
65 (add-after 'unpack 'unpack-googletest
66 ;; Copy the googletest sources to where the CMake build expects them.
67 (lambda* (#:key inputs #:allow-other-keys)
68 (let ((source (assoc-ref inputs "googletest-source"))
69 (target "test/unit/googletest-src"))
70 (mkdir-p target)
71 (copy-recursively source target)
72 ;; Disable downloading via ExternalProject.
73 (substitute* "test/unit/CMakeLists.txt.in"
74 (("ExternalProject_Add\\(") "message("))
75 #t)))
76 (replace 'check
77 (lambda _
78 (with-directory-excursion "test/unit"
79 (invoke "cmake" ".")
80 (invoke "make")
81 (invoke "./ZXingUnitTest"))
82 #t)))))
83 (synopsis "C++ port of ZXing")
84 (description "ZXing-CPP is a barcode scanning library.")
85 (home-page "https://github.com/nu-book/zxing-cpp")
86 (license license:asl2.0)))
091befba
JD
87
88(define-public barcode
89 (package
90 (name "barcode")
91 (version "0.99")
92 (source (origin
93 (method url-fetch)
94 (uri (string-append "mirror://gnu/barcode/barcode-"
a124bbd2
SB
95 version ".tar.xz"))
96 (sha256
97 (base32
98 "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8"))))
091befba
JD
99 (build-system gnu-build-system)
100 (synopsis "Convert text strings to printed bars in various standards")
101 (description "GNU Barcode is a flexible tool to produce printed barcodes
102from text strings. It supports a variety of encoding standards and sizing
103measurements. Barcodes can be output in PostScript or Encapsulated PostScript
104formats.")
105 (license license:gpl3+)
6fd52309 106 (home-page "https://www.gnu.org/software/barcode/")))
51d3dcea
JD
107
108(define-public qrencode
109 (package
110 (name "qrencode")
6dd5f2ea 111 (version "4.0.2")
51d3dcea
JD
112 (source (origin
113 (method url-fetch)
114 (uri (string-append
1486d67e 115 "https://fukuchi.org/works/qrencode/qrencode-" version
d3cd4357 116 ".tar.bz2"))
1486d67e
EF
117 (sha256
118 (base32
6dd5f2ea 119 "1d2q5d3v8g3hsi3h5jq4n177bjhf3kawms09immw7p187f6jgjy9"))))
51d3dcea
JD
120 (build-system gnu-build-system)
121 (inputs `(("libpng" ,libpng)))
122 (native-inputs `(("pkg-config" ,pkg-config)))
123 (synopsis "Encode data into a QR Code symbol")
124 (description "Libqrencode is a C library for encoding data in a QR Code
125symbol, a kind of 2D symbology that can be scanned by handy terminals such as
35b9e423 126a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000
51d3dcea
JD
127characters, and is highly robust.")
128 (license license:lgpl2.1+)
1486d67e 129 (home-page "https://fukuchi.org/works/qrencode")))
7ade8022
HG
130
131(define-public libdmtx
132 (package
133 (name "libdmtx")
b9a807b7 134 (version "0.7.5")
7ade8022
HG
135 (source
136 (origin
b9a807b7
TGR
137 (method git-fetch)
138 (uri (git-reference
b0e7b699 139 (url "https://github.com/dmtx/libdmtx")
b9a807b7
TGR
140 (commit (string-append "v" version))))
141 (file-name (git-file-name name version))
7ade8022 142 (sha256
b9a807b7 143 (base32 "0wk3fkxzf9ip75v8ia54v6ywx72ajp5s6777j4ay8barpbv869rj"))))
7ade8022 144 (build-system gnu-build-system)
b9a807b7
TGR
145 (arguments
146 ;; XXX Test suite is broken: https://github.com/dmtx/libdmtx/issues/22
147 `(#:tests? #f))
7ade8022 148 (native-inputs
b9a807b7
TGR
149 `(("autoconf" ,autoconf)
150 ("automake" ,automake)
151 ("libtool" ,libtool)
152 ("pkg-config" ,pkg-config)))
153 (home-page "https://github.com/dmtx")
7ade8022 154 (synopsis "Library for reading and writing Data Matrix 2D barcodes")
5a80c15c 155 (description "libdmtx is software for reading and writing Data Matrix 2D
0e249bde 156barcodes of the modern ECC200 variety. libdmtx is a shared library, allowing
5a80c15c 157C/C++ programs to use its capabilities without restrictions or overhead.")
7ade8022 158 (license license:bsd-3)))
7293e3db
GLV
159
160(define-public zbar
161 (package
162 (name "zbar")
163 (version "0.23")
164 (source
165 (origin
166 (method url-fetch)
167 (uri (string-append "https://linuxtv.org/downloads/zbar/zbar-"
168 version
169 ".tar.bz2"))
170 (sha256
171 (base32
172 "0bmd93a15qpgbsq9c9j33qms18rdrgz6gbc48zi6z9w5pvrvi7z9"))))
173 (build-system gnu-build-system)
174 (arguments
175 '(#:configure-flags (list "--with-gtk=auto"
176 "--with-python=auto"
177 (string-append "--with-dbusconfdir="
178 (assoc-ref %outputs "out")
0fe041bd 179 "/etc"))))
7293e3db
GLV
180 (native-inputs
181 `(("glib" ,glib "bin")
182 ("pkg-config" ,pkg-config)))
183 (inputs
184 `(("gobject-introspection" ,gobject-introspection)
185 ("gtk+" ,gtk+)
186 ("imagemagick" ,imagemagick)
187 ("libjpeg" ,libjpeg-turbo)
188 ("python" ,python)
189 ("qtbase" ,qtbase)
190 ("qtx11extras" ,qtx11extras)
191 ("v4l-utils" ,v4l-utils)))
192 (synopsis "Bar code reader")
193 (description
194 "ZBar can read barcodes from various sources, such as video streams,
195image files, and raw intensity sensors. It supports EAN-13/UPC-A, UPC-E,
196EAN-8, Code 128, Code 93, Code 39, Codabar, Interleaved 2 of 5, QR Code and SQ
197Code. Included with the library are basic applications for decoding captured
198bar code images and using a video device (e.g. webcam) as a bar code scanner.
199For application developers, language bindings are included for C, C++ and
200Python as well as GUI widgets for GTK and Qt.")
201 (home-page "https://github.com/mchehab/zbar")
202 (license license:lgpl2.1+)))
d41e25c0
LF
203
204(define-public qrcodegen-cpp
cac674d9
EF
205 (package
206 (name "qrcodegen-cpp")
207 (version "1.6.0")
208 (source (origin
209 (method git-fetch)
210 (uri (git-reference
b0e7b699 211 (url "https://github.com/nayuki/QR-Code-generator")
cac674d9
EF
212 (commit (string-append "v" version))))
213 (file-name (git-file-name name version))
214 (patches (search-patches "qrcodegen-cpp-make-install.patch"))
215 (sha256
216 (base32
217 "0iq9sv9na0vg996aqrxrjn9rrbiyy7sc9vslw945p3ky22pw3lql"))))
218 (build-system gnu-build-system)
219 (arguments
220 `(#:tests? #f ; no test suite
221 #:make-flags
222 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
223 #:phases
224 (modify-phases %standard-phases
225 (delete 'configure) ; No ./configure script
226 ;; Only build the C++ variant.
227 (add-after 'unpack 'chdir
228 (lambda _
229 (chdir "cpp")
230 #t)))))
231 (synopsis "QR Code generator library")
232 (description "qrcodegen-cpp is a QR code generator library in C++. The
d41e25c0 233project also offers Java, Javascript, Python, C, and Rust implementations.")
cac674d9
EF
234 (home-page "https://www.nayuki.io/page/qr-code-generator-library")
235 (license license:expat)))