diff options
Diffstat (limited to 'px/packages/events.scm')
-rw-r--r-- | px/packages/events.scm | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/px/packages/events.scm b/px/packages/events.scm index 621f80a..1f78faa 100644 --- a/px/packages/events.scm +++ b/px/packages/events.scm @@ -1,10 +1,9 @@ ;;; Central Event Management Service Packages Module for PantherX -;;; Author: Reza Alizadeh Majd (r.majd@pantherx.org) -;;; Last Change: 2019-02-13 - +;;; Reza Alizadeh Majd (r.majd@pantherx.org) (define-module (px packages events) - #:use-module ((guix licenses) #:prefix license:) + #:use-module ((guix licenses) + #:prefix license:) #:use-module (guix download) #:use-module (guix packages) #:use-module (guix build-system cmake) @@ -14,28 +13,24 @@ #:use-module (px packages common) #:use-module (px packages networking)) - (define-public px-events-service (package (name "px-events-service") (version "0.1.0") (source - (origin - (method url-fetch) - (uri (string-append - "https://source.pantherx.org/px-events-service_v" - version ".tgz")) - (sha256 - (base32 "06030lzzpkw13q7ggr6iw4ywdra57cwc7kn870asd73n3gszyc6r")))) + (origin + (method url-fetch) + (uri (string-append "https://source.pantherx.org/px-events-service_v" + version ".tgz")) + (sha256 + (base32 "06030lzzpkw13q7ggr6iw4ywdra57cwc7kn870asd73n3gszyc6r")))) (build-system cmake-build-system) (arguments - `(#:tests? #f)) - (inputs `( - ("capnproto", capnproto-0.9) - ("nng", nng-1.5) - ("yaml-cpp" ,yaml-cpp))) - (native-inputs `( - ("pkg-config", pkg-config))) + `(#:tests? #f)) + (inputs `(("capnproto" ,capnproto-0.9) + ("nng" ,nng-1.5) + ("yaml-cpp" ,yaml-cpp))) + (native-inputs `(("pkg-config" ,pkg-config))) (home-page "https://www.pantherx.org/") (synopsis "PantherX Central Event Management Service") (description "This package provides background services to manage |