diff options
| author | Lilah Tascheter <lilah@lunabee.space> | 2025-10-21 13:48:37 -0500 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-11-12 12:20:22 +0200 |
| commit | 368d2d9e0ff9a6dce0c1836d1ac542d4d2b9d23a (patch) | |
| tree | 9f23eeac7d37b6c6d3bafcc609b544517037bff0 /gnu/packages/rust-apps.scm | |
| parent | e7ff1866026a1777d0bb19bc174e5f77365fc5e9 (diff) | |
gnu: Add mollysocket.
* gnu/packages/rust-apps.scm (mollysocket): New variable.
* gnu/packages/rust-crates.scm: Import mollysocket deps.
Change-Id: Ifcfbf6078bf07f4f429bb0eeea2e61d5afba2c82
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/rust-apps.scm')
| -rw-r--r-- | gnu/packages/rust-apps.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 3ea19a91438..9737720129d 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1902,6 +1902,31 @@ specified image or color, easing the process of theme creation.") @code{cffi} bindings as well as rust binaries as python packages.") (license (list license:expat license:asl2.0)))) +(define-public mollysocket + (package + (name "mollysocket") + (version "1.6.0") + (source (origin + (method url-fetch) + (uri (crate-uri "mollysocket" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "08kgcwc1b9s221sy2pjmzxz4i8iagkfj8wr1k2c6d4pbgzgwqm8y")))) + (build-system cargo-build-system) + (arguments + '(#:install-source? #f + #:tests? #f)) ; tests require internet + (inputs (cons* openssl sqlite (cargo-inputs 'mollysocket))) + (native-inputs (list pkg-config)) + (home-page "https://github.com/mollyim/mollysocket") + (synopsis "Signal push notifications through UnifiedPush") + (description "MollySocket is a UnifiedPush provider that receives push +notifications from Signal through the Molly app, and pushes them to a user's +distributor. Message encryption keys are never stored nor received by +Mollysocket.") + (license license:agpl3+))) + (define-public netavark (package (name "netavark") |
