summaryrefslogtreecommitdiff
path: root/px/packages/secret.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/secret.scm
parent0b426d7b7ed8e176bf464ef9e0683f74a6c9d20f (diff)
rewrite: apply guix-reference formatting; cleanup some module imports
Diffstat (limited to 'px/packages/secret.scm')
-rw-r--r--px/packages/secret.scm50
1 files changed, 24 insertions, 26 deletions
diff --git a/px/packages/secret.scm b/px/packages/secret.scm
index 618fc90..da18372 100644
--- a/px/packages/secret.scm
+++ b/px/packages/secret.scm
@@ -1,9 +1,9 @@
;;; Settings Packages Module for PantherX
-;;; Author: Hamzeh Nasajpour (h.nasajpour@pantherx.org)
-;;;
+;;; Hamzeh Nasajpour (h.nasajpour@pantherx.org)
(define-module (px packages secret)
- #: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)
@@ -20,32 +20,28 @@
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz))
-
(define-public px-secret-service
(package
(name "px-secret-service")
(version "v0.3.4")
(source
- (origin
- (method url-fetch)
- (uri (string-append
- "https://source.pantherx.org/px-secret-service_"
- version
- ".tgz"))
- (sha256
- (base32
- "0jc3mcmq2232nfm52fp3ag1v7gj5yh7a432v4mxv5jkqm2h71nm1"))))
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/px-secret-service_"
+ version ".tgz"))
+ (sha256
+ (base32 "0jc3mcmq2232nfm52fp3ag1v7gj5yh7a432v4mxv5jkqm2h71nm1"))))
(build-system cmake-build-system)
(arguments
- `(#:tests? #f))
+ `(#:tests? #f))
(inputs `(("capnproto" ,capnproto-0.9)
("libsecret" ,libsecret)
("rapidjson" ,rapidjson)))
- (native-inputs
- `(("pkg-config", pkg-config)))
+ (native-inputs `(("pkg-config" ,pkg-config)))
(home-page "https://www.pantherx.org/")
(synopsis "PantherX Secret Service")
- (description "This package provides secret service to store confidential information on PantherX")
+ (description
+ "This package provides secret service to store confidential information on PantherX")
(license license:gpl3)))
(define-public px-secret-sharing
@@ -53,16 +49,18 @@
(name "px-secret-sharing")
(version "0.0.1")
(source
- (origin
- (method url-fetch)
- (uri (string-append "https://source.pantherx.org/" name "_v" version ".tgz"))
- (sha256 (base32 "1w3lsi4km3xlwb1a4w5nb26pn7rkzmdvfh7isbpmhv6qfq9fim1a"))))
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://source.pantherx.org/" name "_v" version
+ ".tgz"))
+ (sha256
+ (base32 "1w3lsi4km3xlwb1a4w5nb26pn7rkzmdvfh7isbpmhv6qfq9fim1a"))))
(build-system python-build-system)
- (propagated-inputs
- `(("steghide", steghide)
- ("python-appdirs", python-appdirs)))
- (home-page "https://git.pantherx.org/development/applications/px-secret-sharing")
+ (propagated-inputs `(("steghide" ,steghide)
+ ("python-appdirs" ,python-appdirs)))
+ (home-page
+ "https://git.pantherx.org/development/applications/px-secret-sharing")
(synopsis "Automated, secure secrets sharing and reconstruction.")
(description "CLI application that automates secret sharing and
reconstruction (Shamir's secret sharing scheme)")
- (license license:expat))) \ No newline at end of file
+ (license license:expat)))