diff options
Diffstat (limited to 'px/packages/secret.scm')
-rw-r--r-- | px/packages/secret.scm | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/px/packages/secret.scm b/px/packages/secret.scm new file mode 100644 index 0000000..618fc90 --- /dev/null +++ b/px/packages/secret.scm @@ -0,0 +1,68 @@ +;;; Settings Packages Module for PantherX +;;; Author: Hamzeh Nasajpour (h.nasajpour@pantherx.org) +;;; + +(define-module (px packages secret) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix download) + #:use-module (guix packages) + #:use-module (guix build-system cmake) + #:use-module (guix build-system python) + #:use-module (guix utils) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages serialization) + #:use-module (gnu packages gnome) + #:use-module (gnu packages gnupg) + #:use-module (gnu packages web) + #:use-module (px packages common) + #:use-module (gnu packages image) + #:use-module (gnu packages python) + #: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")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (inputs `(("capnproto" ,capnproto-0.9) + ("libsecret" ,libsecret) + ("rapidjson" ,rapidjson))) + (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") + (license license:gpl3))) + +(define-public px-secret-sharing + (package + (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")))) + (build-system python-build-system) + (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 |