;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 John Darringon ;;; Copyright © 2016, 2020, 2021 Efraim Flashner ;;; Copyright © 2017 Hartmut Goebel ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice ;;; Copyright © 2019 Guillaume Le Vaillant ;;; Copyright © 2020 Leo Famulari ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If n
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-06-13 00:59:35 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-06-13 01:19:57 +0200
commit3c73d7c5e4ea4edea62346a71ceee22af6b70ba5 (patch)
treefbf02c3d18444d1b5c637c907003f792f1138f34 /gnu/system/linux-container.scm
parent0c2573e7f1e1efe778b4e3120adecb80f31b47b8 (diff)
downloadguix-3c73d7c5e4ea4edea62346a71ceee22af6b70ba5.tar.gz
guix-3c73d7c5e4ea4edea62346a71ceee22af6b70ba5.zip
gnu: r-cytolib: Update to 2.0.3.
* gnu/packages/bioconductor.scm (r-cytolib): Update to 2.0.3. [inputs]: Add zlib. [propagated-inputs]: Add r-bh, r-rcpp, r-rcpparmadillo, r-rcppparallel, r-rhdf5lib, and r-rprotobuflib. [native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/system/linux-container.scm')
0 files changed, 0 insertions, 0 deletions
automake libtool pkg-config)) (home-page "https://github.com/dmtx") (synopsis "Library for reading and writing Data Matrix 2D barcodes") (description "libdmtx is software for reading and writing Data Matrix 2D barcodes of the modern ECC200 variety. libdmtx is a shared library, allowing C/C++ programs to use its capabilities without restrictions or overhead.") (license license:bsd-3))) (define-public zbar (package (name "zbar") (version "0.23.90") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mchehab/zbar") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0rf3i7lx0fqzxsngird6l4d4dnl612nr32rm8sib699qqx67px8n")))) (build-system gnu-build-system) (arguments '(#:configure-flags (list "--with-gtk=auto" "--with-python=auto" (string-append "--with-dbusconfdir=" (assoc-ref %outputs "out") "/etc")))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("gettext" ,gettext-minimal) ("glib" ,glib "bin") ("gobject-introspection" ,gobject-introspection) ("libtool" ,libtool) ("pkg-config" ,pkg-config) ("python-wrapper" ,python-wrapper))) (inputs `(("dbus" ,dbus) ("imagemagick" ,imagemagick) ("libjpeg" ,libjpeg-turbo) ("perl" ,perl) ("python" ,python) ("qtx11extras" ,qtx11extras) ("v4l-utils" ,v4l-utils))) (propagated-inputs ;; These are in 'requires' field of .pc files. (list glib gtk+ qtbase-5)) (synopsis "Bar code reader") (description "ZBar can read barcodes from various sources, such as video streams, image files, and raw intensity sensors. It supports EAN-13/UPC-A, UPC-E, EAN-8, Code 128, Code 93, Code 39, Codabar, Interleaved 2 of 5, QR Code and SQ Code. Included with the library are basic applications for decoding captured bar code images and using a video device (e.g. webcam) as a bar code scanner. For application developers, language bindings are included for C, C++ and Python as well as GUI widgets for GTK and Qt.") (home-page "https://github.com/mchehab/zbar") (license license:lgpl2.1+))) (define-public qrcodegen-cpp (package (name "qrcodegen-cpp") (version "1.6.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/nayuki/QR-Code-generator") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (patches (search-patches "qrcodegen-cpp-make-install.patch")) (sha256 (base32 "0iq9sv9na0vg996aqrxrjn9rrbiyy7sc9vslw945p3ky22pw3lql")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no test suite #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (delete 'configure) ; No ./configure script ;; Only build the C++ variant. (add-after 'unpack 'chdir (lambda _ (chdir "cpp") #t))))) (synopsis "QR Code generator library") (description "qrcodegen-cpp is a QR code generator library in C++. The project also offers Java, Javascript, Python, C, and Rust implementations.") (home-page "https://www.nayuki.io/page/qr-code-generator-library") (license license:expat)))