summaryrefslogtreecommitdiff
path: root/px/packages/device.scm
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2023-11-06 20:08:14 +0000
committerFranz Geffke <franz@pantherx.org>2023-11-06 20:08:14 +0000
commit47b4c9c854915df93893dbaa993accfacf9027fe (patch)
tree4f9b1742d63fcfbc94cc6b8d84f76c4d00c3a0b7 /px/packages/device.scm
parent0b426d7b7ed8e176bf464ef9e0683f74a6c9d20f (diff)
rewrite: apply guix-reference formatting; cleanup some module imports
Diffstat (limited to 'px/packages/device.scm')
-rw-r--r--px/packages/device.scm747
1 files changed, 401 insertions, 346 deletions
diff --git a/px/packages/device.scm b/px/packages/device.scm
index 35dedcb..1d11564 100644
--- a/px/packages/device.scm
+++ b/px/packages/device.scm
@@ -1,7 +1,8 @@
(define-module (px packages device)
#:use-module (guix build-system cmake)
#:use-module (guix download)
- #:use-module ((guix licenses) #:prefix license:)
+ #:use-module ((guix licenses)
+ #:prefix license:)
#:use-module (guix packages)
#:use-module (gnu packages lxqt)
#:use-module (gnu packages qt)
@@ -41,346 +42,399 @@
(define-public px-device-identity
(package
- (name "px-device-identity")
- (version "0.10.9")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "10qpj1s1z5crcs6fxngp13lgn296m76x4fckgidaikr9i6mckkd1"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref %build-inputs "openssl"))
- (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref %build-inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-device-identity")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf"))))
- (wrap-program (string-append out "/bin/px-device-identity")
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/"))))
- (wrap-program (string-append out "/bin/px-device-identity")
- `("PATH" ":" prefix (,(string-append openssl "/bin/"))))
- (wrap-program (string-append out "/bin/px-device-identity")
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- (wrap-program (string-append out "/bin/px-device-identity")
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
+ (name "px-device-identity")
+ (version "0.10.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "10qpj1s1z5crcs6fxngp13lgn296m76x4fckgidaikr9i6mckkd1"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref %build-inputs "openssl"))
+ (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref %build-inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-device-identity")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity")
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity")
+ `("PATH" ":" prefix
+ (,(string-append openssl "/bin/"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity")
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity")
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
#t)))
- (delete 'sanity-check))))
- (inputs
- `(("openssl" ,openssl)
- ("python-idna" ,python-idna)
- ("python-requests" ,python-requests)
- ("python-authlib-0.14.3" ,python-authlib-0.14.3)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-jose" ,python-jose)
- ("python-pyyaml" ,python-pyyaml)
- ("python-shortuuid" ,python-shortuuid-v1)
- ("python-appdirs" ,python-appdirs)
- ("python-psutil" ,python-psutil)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-requests" ,python-requests)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Device Identity Manager")
- (description "Initiates device identity based on RSA or ECC key pair and optionally registers with Central Management.")
- (license license:expat)))
-
+ (delete 'sanity-check))))
+ (inputs `(("openssl" ,openssl)
+ ("python-idna" ,python-idna)
+ ("python-requests" ,python-requests)
+ ("python-authlib-0.14.3" ,python-authlib-0.14.3)
+ ("python-pycryptodomex" ,python-pycryptodomex)
+ ("python-jose" ,python-jose)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-shortuuid" ,python-shortuuid-v1)
+ ("python-appdirs" ,python-appdirs)
+ ("python-psutil" ,python-psutil)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("python-requests" ,python-requests)))
+ (home-page "https://www.pantherx.org/")
+ (synopsis "PantherX Device Identity Manager")
+ (description
+ "Initiates device identity based on RSA or ECC key pair and optionally registers with Central Management.")
+ (license license:expat)))
(define-public px-device-identity-service
(package
- (name "px-device-identity-service")
- (version "0.11.0")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "1jhzg5jqhja8pbr47waxsfhlqqff84vvj8m8kipmy9jq1sn7s0i3"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref %build-inputs "openssl"))
- (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref %build-inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-device-identity-service")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf"))))
- (wrap-program (string-append out "/bin/px-device-identity-service")
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/"))))
- (wrap-program (string-append out "/bin/px-device-identity-service")
- `("PATH" ":" prefix (,(string-append openssl "/bin/"))))
- (wrap-program (string-append out "/bin/px-device-identity-service")
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- (wrap-program (string-append out "/bin/px-device-identity-service")
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
+ (name "px-device-identity-service")
+ (version "0.11.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "1jhzg5jqhja8pbr47waxsfhlqqff84vvj8m8kipmy9jq1sn7s0i3"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref %build-inputs "openssl"))
+ (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref %build-inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-device-identity-service")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity-service")
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity-service")
+ `("PATH" ":" prefix
+ (,(string-append openssl "/bin/"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity-service")
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
+ (wrap-program (string-append out
+ "/bin/px-device-identity-service")
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
#t)))
- (delete 'sanity-check))))
- (inputs
- `(("python-waitress" ,python-waitress)
- ("openssl" ,openssl)
- ("python-idna" ,python-idna)
- ("python-requests" ,python-requests)
- ("python-flask" ,python-flask)
- ("python-werkzeug" ,python-werkzeug)
- ("python-authlib-0.14.3" ,python-authlib-0.14.3)
- ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-jose" ,python-jose)
- ("python-pyyaml" ,python-pyyaml)
- ("python-shortuuid" ,python-shortuuid-v1)
- ("python-appdirs" ,python-appdirs)
- ("python-psutil" ,python-psutil)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-requests" ,python-requests)))
- (propagated-inputs
- `(("px-device-identity" ,px-device-identity)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Device Identity Service")
- (description "Makes device signing capabilities available to other applications, without root priviliges.")
- (license license:expat)))
-
+ (delete 'sanity-check))))
+ (inputs `(("python-waitress" ,python-waitress)
+ ("openssl" ,openssl)
+ ("python-idna" ,python-idna)
+ ("python-requests" ,python-requests)
+ ("python-flask" ,python-flask)
+ ("python-werkzeug" ,python-werkzeug)
+ ("python-authlib-0.14.3" ,python-authlib-0.14.3)
+ ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
+ ("python-pycryptodomex" ,python-pycryptodomex)
+ ("python-jose" ,python-jose)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-shortuuid" ,python-shortuuid-v1)
+ ("python-appdirs" ,python-appdirs)
+ ("python-psutil" ,python-psutil)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("python-requests" ,python-requests)))
+ (propagated-inputs `(("px-device-identity" ,px-device-identity)))
+ (home-page "https://www.pantherx.org/")
+ (synopsis "PantherX Device Identity Service")
+ (description
+ "Makes device signing capabilities available to other applications, without root priviliges.")
+ (license license:expat)))
(define-public px-device-runner
(package
- (name "px-device-runner")
- (version "0.0.14")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "0sdyz81z8l0q99r09fymw2v6r9ylc7rkxxdwkbnm6lgch5pib36r"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref %build-inputs "openssl"))
- (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref %build-inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-device-runner")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf")))
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/")
- ,(string-append openssl "/bin/")))
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0")))
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- #t)))
- (delete 'sanity-check))))
- (inputs
- `(("openssl" ,openssl)
- ("python-idna" ,python-idna)
- ("python-requests" ,python-requests)
- ("python-authlib-0.14.3" ,python-authlib-0.14.3)
- ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-jose" ,python-jose)
- ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
- ("python-shortuuid" ,python-shortuuid-v1)
- ("python-appdirs" ,python-appdirs)
- ("python-psutil" ,python-psutil)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-requests" ,python-requests)))
- (propagated-inputs
- `(("px-device-identity" ,px-device-identity)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Device Runner")
- (description "Downloads administrative jobs from Central Management to run on local device.")
- (license license:expat)))
-
+ (name "px-device-runner")
+ (version "0.0.14")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "0sdyz81z8l0q99r09fymw2v6r9ylc7rkxxdwkbnm6lgch5pib36r"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref %build-inputs "openssl"))
+ (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref %build-inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-device-runner")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf")))
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/") ,(string-append
+ openssl
+ "/bin/")))
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))) #t)))
+ (delete 'sanity-check))))
+ (inputs `(("openssl" ,openssl)
+ ("python-idna" ,python-idna)
+ ("python-requests" ,python-requests)
+ ("python-authlib-0.14.3" ,python-authlib-0.14.3)
+ ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
+ ("python-pycryptodomex" ,python-pycryptodomex)
+ ("python-jose" ,python-jose)
+ ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
+ ("python-shortuuid" ,python-shortuuid-v1)
+ ("python-appdirs" ,python-appdirs)
+ ("python-psutil" ,python-psutil)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("python-requests" ,python-requests)))
+ (propagated-inputs `(("px-device-identity" ,px-device-identity)))
+ (home-page "https://www.pantherx.org/")
+ (synopsis "PantherX Device Runner")
+ (description
+ "Downloads administrative jobs from Central Management to run on local device.")
+ (license license:expat)))
(define-public px-user-identity-service
(package
- (name "px-user-identity-service")
- (version "0.1.0")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "0vhb5f4klvbdf802b3i4mli3926ny4pxcnbhif8mn56dnj8lgf84"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref %build-inputs "openssl"))
- (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref %build-inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-user-identity-service")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf")))
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/")
- ,(string-append openssl "/bin/")))
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0")))
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- #t)))
- (delete 'sanity-check))))
- (inputs
- `(("python-waitress" ,python-waitress)
- ("openssl" ,openssl)
- ("python-idna" ,python-idna)
- ("python-requests" ,python-requests)
- ("python-flask" ,python-flask)
- ("python-werkzeug" ,python-werkzeug)
- ("python-authlib-0.14.3" ,python-authlib-0.14.3)
- ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-jose" ,python-jose)
- ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
- ("python-shortuuid" ,python-shortuuid-v1)
- ("python-appdirs" ,python-appdirs)
- ("python-psutil" ,python-psutil)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-requests" ,python-requests)))
- (propagated-inputs
- `(("px-device-identity" ,px-device-identity)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX User Identity Service REST API")
- (description "User Identity API to support QR and BC login with device signature.")
- (license license:expat)))
-
+ (name "px-user-identity-service")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "0vhb5f4klvbdf802b3i4mli3926ny4pxcnbhif8mn56dnj8lgf84"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref %build-inputs "openssl"))
+ (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref %build-inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-user-identity-service")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf")))
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/") ,(string-append
+ openssl
+ "/bin/")))
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))) #t)))
+ (delete 'sanity-check))))
+ (inputs `(("python-waitress" ,python-waitress)
+ ("openssl" ,openssl)
+ ("python-idna" ,python-idna)
+ ("python-requests" ,python-requests)
+ ("python-flask" ,python-flask)
+ ("python-werkzeug" ,python-werkzeug)
+ ("python-authlib-0.14.3" ,python-authlib-0.14.3)
+ ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
+ ("python-pycryptodomex" ,python-pycryptodomex)
+ ("python-jose" ,python-jose)
+ ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
+ ("python-shortuuid" ,python-shortuuid-v1)
+ ("python-appdirs" ,python-appdirs)
+ ("python-psutil" ,python-psutil)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("python-requests" ,python-requests)))
+ (propagated-inputs `(("px-device-identity" ,px-device-identity)))
+ (home-page "https://www.pantherx.org/")
+ (synopsis "PantherX User Identity Service REST API")
+ (description
+ "User Identity API to support QR and BC login with device signature.")
+ (license license:expat)))
(define-public px-file-upload-cli
(package
- (name "px-file-upload-cli")
- (version "0.0.6")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "-" version ".crate"))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256 (base32 "10p0zxf576v28hgzbby45q9xlj3bd0314h9zaikallc1l30qb2l9"))))
- (build-system cargo-build-system)
- (arguments
- `(#:tests? #f
- #:cargo-inputs
- (("rust-chrono" ,rust-chrono-0.4)
- ("rust-clap" ,rust-clap-2)
- ("rust-configparser" ,rust-configparser-2)
- ("rust-fern" ,rust-fern-0.6)
- ("rust-log" ,rust-log-0.4)
- ("rust-mime-guess" ,rust-mime-guess-2)
- ("rust-reqwest" ,rust-reqwest-0.11)
- ("rust-serde" ,rust-serde-1)
- ("rust-serde-json" ,rust-serde-json-1)
- ("rust-serde-yaml" ,rust-serde-yaml-0.8)
- ("rust-syslog" ,rust-syslog-4)
- ;; TODO: restore back to upstream version once the following patch is merged upstream:
- ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60174
- ("rust-tokio" ,rust-tokio-1-patched)
- ("rust-tokio-util" ,rust-tokio-util-0.6)
- ("rust-uuid" ,rust-uuid-0.8))
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs inputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref inputs "openssl"))
- (tpm2-tss (assoc-ref inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-file-upload-cli")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf")))
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/")
- ,(string-append openssl "/bin/")))
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0")))
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- #t))))))
- (inputs
- `(("openssl" ,openssl)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)))
- (propagated-inputs
- `(("px-device-identity" ,px-device-identity)))
- (home-page "https://pantherx.org")
- (synopsis "PantherX Uploader Utility")
- (description "Uploader cli application which reads a
+ (name "px-file-upload-cli")
+ (version "0.0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "-" version
+ ".crate"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "10p0zxf576v28hgzbby45q9xlj3bd0314h9zaikallc1l30qb2l9"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:tests? #f
+ #:cargo-inputs (("rust-chrono" ,rust-chrono-0.4)
+ ("rust-clap" ,rust-clap-2)
+ ("rust-configparser" ,rust-configparser-2)
+ ("rust-fern" ,rust-fern-0.6)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-mime-guess" ,rust-mime-guess-2)
+ ("rust-reqwest" ,rust-reqwest-0.11)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-serde-yaml" ,rust-serde-yaml-0.8)
+ ("rust-syslog" ,rust-syslog-4)
+ ;; TODO: restore back to upstream version once the following patch is merged upstream:
+ ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=60174
+ ("rust-tokio" ,rust-tokio-1-patched)
+ ("rust-tokio-util" ,rust-tokio-util-0.6)
+ ("rust-uuid" ,rust-uuid-0.8))
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs inputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref inputs "openssl"))
+ (tpm2-tss (assoc-ref inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-file-upload-cli")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf")))
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/") ,(string-append
+ openssl
+ "/bin/")))
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))) #t))))))
+ (inputs `(("openssl" ,openssl)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (propagated-inputs `(("px-device-identity" ,px-device-identity)))
+ (home-page "https://pantherx.org")
+ (synopsis "PantherX Uploader Utility")
+ (description
+ "Uploader cli application which reads a
configuration file from commandline args and upload results to the server")
- (license license:expat)))
-
+ (license license:expat)))
(define-public px-device-backup
(package
- (name "px-device-backup")
- (version "0.0.5")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "1wcqvwwcv5x98haj956gmwgv977h41pwh42qvhp6z0v3sfn21cby"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'wrap-for-openssl-tss2-conf
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (openssl (assoc-ref %build-inputs "openssl"))
- (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
- (tpm2-tss-engine (assoc-ref %build-inputs "tpm2-tss-engine")))
- (wrap-program (string-append out "/bin/px-device-backup")
- `("OPENSSL_CONF" ":" prefix (,(string-append tpm2-tss-engine "/etc/openssl-tss2.conf")))
- `("PATH" ":" prefix (,(string-append tpm2-tss-engine "/bin/")
- ,(string-append openssl "/bin/")))
- `("TPM2TSSENGINE_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0")))
- `("TPM2TOOLS_TCTI" ":" prefix (,(string-append tpm2-tss "/lib/libtss2-tcti-device.so:/dev/tpm0"))))
- #t)))
- (delete 'sanity-check))))
- (inputs
- `(("python-waitress" ,python-waitress)
- ("openssl" ,openssl)
- ("python-idna" ,python-idna)
- ("python-requests" ,python-requests)
- ("python-authlib-0.14.3" ,python-authlib-0.14.3)
- ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
- ("python-pycryptodomex" ,python-pycryptodomex)
- ("python-jose" ,python-jose)
- ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
- ("python-shortuuid" ,python-shortuuid-v1)
- ("python-appdirs" ,python-appdirs)
- ("python-psutil" ,python-psutil)
- ("tpm2-tss" ,tpm2-tss-openssl-1.1)
- ("tpm2-tss-engine" ,tpm2-tss-engine)
- ("python-boto3" ,python-boto3)
- ("bash-minimal" ,bash-minimal)))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("python-requests" ,python-requests)))
- (propagated-inputs
- `(("px-device-identity" ,px-device-identity)))
- (home-page "https://www.pantherx.org/")
- (synopsis "PantherX Device Backup")
- (description "Pulls device backup config from Central Management and runs the backup.")
- (license license:expat)))
+ (name "px-device-backup")
+ (version "0.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "1wcqvwwcv5x98haj956gmwgv977h41pwh42qvhp6z0v3sfn21cby"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-for-openssl-tss2-conf
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (openssl (assoc-ref %build-inputs "openssl"))
+ (tpm2-tss (assoc-ref %build-inputs "tpm2-tss"))
+ (tpm2-tss-engine (assoc-ref %build-inputs
+ "tpm2-tss-engine")))
+ (wrap-program (string-append out
+ "/bin/px-device-backup")
+ `("OPENSSL_CONF" ":" prefix
+ (,(string-append tpm2-tss-engine
+ "/etc/openssl-tss2.conf")))
+ `("PATH" ":" prefix
+ (,(string-append tpm2-tss-engine "/bin/") ,(string-append
+ openssl
+ "/bin/")))
+ `("TPM2TSSENGINE_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))
+ `("TPM2TOOLS_TCTI" ":" prefix
+ (,(string-append tpm2-tss
+ "/lib/libtss2-tcti-device.so:/dev/tpm0")))) #t)))
+ (delete 'sanity-check))))
+ (inputs `(("python-waitress" ,python-waitress)
+ ("openssl" ,openssl)
+ ("python-idna" ,python-idna)
+ ("python-requests" ,python-requests)
+ ("python-authlib-0.14.3" ,python-authlib-0.14.3)
+ ("python-exitstatus-2.0.1" ,python-exitstatus-2.0.1)
+ ("python-pycryptodomex" ,python-pycryptodomex)
+ ("python-jose" ,python-jose)
+ ("python-pyyaml-v5.3.1" ,python-pyyaml-v5.3.1)
+ ("python-shortuuid" ,python-shortuuid-v1)
+ ("python-appdirs" ,python-appdirs)
+ ("python-psutil" ,python-psutil)
+ ("tpm2-tss" ,tpm2-tss-openssl-1.1)
+ ("tpm2-tss-engine" ,tpm2-tss-engine)
+ ("python-boto3" ,python-boto3)
+ ("bash-minimal" ,bash-minimal)))
+ (native-inputs `(("pkg-config" ,pkg-config)
+ ("python-requests" ,python-requests)))
+ (propagated-inputs `(("px-device-identity" ,px-device-identity)))
+ (home-page "https://www.pantherx.org/")
+ (synopsis "PantherX Device Backup")
+ (description
+ "Pulls device backup config from Central Management and runs the backup.")
+ (license license:expat)))
; (define-public px-remote-access
; (package
@@ -437,7 +491,6 @@ configuration file from commandline args and upload results to the server")
; (description "Enables SSH remote access via tunnel.")
; (license license:expat)))
-
;; (define-public px-org-activitywatch-service
;; (package
;; (name "px-org-activitywatch-service")
@@ -461,27 +514,29 @@ configuration file from commandline args and upload results to the server")
;; to Central Management")
;; (license license:expat)))
-
(define-public bluetooth-client-manager-service
(package
- (name "bluetooth-client-manager-service")
- (version "0.1.10")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256
- (base32 "1rryll9pic2k5gqdhyrxiff20dgs4xs8j2213vy5l1p4ahinlwrf"))))
- (build-system cmake-build-system)
- (native-inputs `(("pkg-config" ,pkg-config)))
- (inputs `(("bluez-qt" ,bluez-qt)
- ("capnproto" ,capnproto-0.9)
- ("openssl" ,openssl)
- ("qtbase", qtbase-5)
- ("util-linux" ,util-linux "lib")
- ("yaml-cpp" ,yaml-cpp)))
- (arguments `(#:tests? #f))
- (home-page "https://pantherx.org")
- (synopsis "Bluetooth Client Manager Service")
- (description "Background service for Bluetooth device discovery, data retrieval and submission")
- (license license:expat)))
+ (name "bluetooth-client-manager-service")
+ (version "0.1.10")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "1rryll9pic2k5gqdhyrxiff20dgs4xs8j2213vy5l1p4ahinlwrf"))))
+ (build-system cmake-build-system)
+ (native-inputs `(("pkg-config" ,pkg-config)))
+ (inputs `(("bluez-qt" ,bluez-qt)
+ ("capnproto" ,capnproto-0.9)
+ ("openssl" ,openssl)
+ ("qtbase" ,qtbase-5)
+ ("util-linux" ,util-linux "lib")
+ ("yaml-cpp" ,yaml-cpp)))
+ (arguments
+ `(#:tests? #f))
+ (home-page "https://pantherx.org")
+ (synopsis "Bluetooth Client Manager Service")
+ (description
+ "Background service for Bluetooth device discovery, data retrieval and submission")
+ (license license:expat)))