diff options
author | Franz Geffke <m@f-a.nz> | 2025-01-17 15:06:59 +0000 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-01-17 15:06:59 +0000 |
commit | 6f17dec12858224831c276c6bb115aa36f458a6d (patch) | |
tree | 9acfd73ff7a55387bb7677749bd566b1a5283b35 /px/packages | |
parent | 588862e271386a32f845b056403af694fd09fe84 (diff) |
px: Remove px-org-remote-user-activity-service
Diffstat (limited to 'px/packages')
-rw-r--r-- | px/packages/activity.scm | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/px/packages/activity.scm b/px/packages/activity.scm deleted file mode 100644 index 432a520..0000000 --- a/px/packages/activity.scm +++ /dev/null @@ -1,44 +0,0 @@ -(define-module (px packages activity) - #:use-module ((guix licenses) - #:prefix license:) - #:use-module (guix download) - #:use-module (guix packages) - #:use-module (guix build-system cmake) - #:use-module (guix utils) - #:use-module (guix git-download) - #:use-module (guix build utils) - #:use-module (guix git-download) - #:use-module (px packages common) - #:use-module (gnu packages pkg-config) - #:use-module (gnu packages certs) - #:use-module (gnu packages python) - #:use-module (gnu packages curl) - #:use-module (gnu packages web) - #:use-module (gnu packages tls) - #:use-module (gnu packages serialization)) - -(define-public px-org-remote-user-activity-service - (package - (name "px-org-remote-user-activity-service") - (version "0.0.4") - (source - (origin - (method url-fetch) - (uri (string-append "https://source.pantherx.org/" name "_v" version - ".tgz")) - (sha256 - (base32 "0zjry2gflrk9vpwhlyy4ik8c4gnh8sz4lay3dfrm789ym0yv5lxd")))) - (build-system cmake-build-system) - (arguments - `(#:configure-flags '("../") - #:tests? #f)) - (inputs `(("yaml-cpp" ,yaml-cpp) - ("rapidjson" ,rapidjson) - ("nss-certs" ,nss-certs) - ("openssl" ,openssl) - ("curl" ,curl))) - (home-page "https://www.pantherx.org/") - (synopsis "PantherX PXCENTRAL Activity Service") - (description "Report Activity Watch events to Central Management") - (license license:expat))) - |