blob: c777244aa0f872b5522ce82ea0ba713243c6b36a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
(define-module (px packages cpp)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix build-system qt)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
#:use-module (guix build-system cmake)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages qt)
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gnome) ;; libsoup, json-glib
#:use-module (gnu packages networking) ;; libnice
#:use-module (gnu packages cpp) ;; cli11
#:use-module (gnu packages compression) ;; xz
#:use-module (px packages gstreamer) ;; gst-plugins-good-qmlgl
#:use-module (ice-9 match))
(define-public cpp-qr-code-generator
(package
(name "qr-code-generator")
(version "1.8.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/nayuki/QR-Code-generator/archive/refs/tags/v"
version ".tar.gz"))
(sha256
(base32 "0q5f6iywzi8hzvpjnzd5rymkkqaz5pa77x7a5sa1qlkg7p9s9h1f"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f
#:phases
;; The build scripts are are in cpp/.
(modify-phases %standard-phases
(add-after 'unpack 'pre-configure
(lambda _
(chdir "cpp")))
;; The source does not have a ./configure script.
(delete 'configure)
(replace 'install
;; The Makefile lacks an ‘install’ target.
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(lib (string-append out "/lib"))
(include (string-append out "/include")))
(mkdir-p lib)
(mkdir-p include)
(install-file "qrcodegen.hpp" include)
(install-file "qrcodegen.cpp" include)
(install-file "qrcodegen.o" lib)
(install-file "libqrcodegencpp.a" lib)
#t))))))
(home-page "https://github.com/nayuki/QR-Code-generator")
(synopsis "High-quality QR Code generator library - C++ version")
(description
"This project aims to be the best, clearest QR Code generator library
in multiple languages.")
(license license:expat)))
(define-public webrtc-cpp
(package
(name "webrtc-cpp")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
(sha256
(base32 "05dim4gcikqsbg8jn33v7pp4w634hmw23lxnqf6lfp3s4cmvv454"))))
(build-system qt-build-system)
(arguments
`(#:tests? #f))
(inputs (list qtbase-5
qtwayland-5
qtdeclarative-5
qtmultimedia-5
qtquickcontrols-5
qtquickcontrols2-5
qtwebsockets-5
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
gst-plugins-good-qmlgl
libnice
libsoup
json-glib
cli11
xz))
(native-inputs (list pkg-config))
(home-page "https://www.pantherx.org/")
(synopsis "GStreamer WebRTC C++ library")
(description "Ease integration of GStreamer WebRTC in C++/Qt applications.")
(license license:expat)))
|