blob: d26581c3bd20c29a8115ccd717488f0b6705cf0c (
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
|
(define-module (px packages library)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix build-system qt)
#:use-module (gnu packages qt)
#:use-module ((guix licenses)
#:prefix license:))
(define-public px-auth-library-cpp
(package
(name "px-auth-library-cpp")
(version "0.0.30")
(source
(origin
(method url-fetch)
(uri (string-append "https://source.pantherx.org/" name "_" version
".tgz"))
(sha256
(base32 "1qp6gl27p5npz50p386izs7ab1g6jdxqfmlsdgw6zh8iyg8c4ni3"))))
(build-system qt-build-system)
(arguments
(list
#:tests? #f))
(inputs (list qtbase-5))
(home-page "https://www.pantherx.org/")
(synopsis "CIBA, QR and Device Authentication")
(description "CIBA and QR flow and device authentication library")
(license license:expat)))
|