This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6c8da75d89 gnu: Add emacs-org-social.
6c8da75d89 is described below

commit 6c8da75d898a937b90b823fe798af4ce5efc0708
Author: moksh <mysticmo...@riseup.net>
AuthorDate: Sat Aug 16 21:06:23 2025 +0530

    gnu: Add emacs-org-social.
    
    * gnu/packages/emacs-xyz.scm (emacs-org-social): New Variable.
    
    Change-Id: I1ee59532363fdb0760d30f67129d71f1522a3aae
    Reviewed-by: Liliana Marie Prikler <liliana.prik...@gmail.com>
    Reviewed-by: Cayetano Santos <csant...@inventati.org>
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 8ff3a01eb0..681e315f9a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -162,6 +162,7 @@
 ;;; Copyright © 2025 Jake Forster <jakecameron.fors...@gmail.com>
 ;;; Copyright @ 2025 Andrew Wong <wonga...@icloud.com>
 ;;; Copyright @ 2025 Nik Gaffney <n...@fo.am>
+;;; Copyright © 2025 Untrusem <mysticmo...@riseup.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -38861,6 +38862,31 @@ time.")
 federated microblogging social network.")
     (license license:gpl3+)))
 
+(define-public emacs-org-social
+  (let ((commit "e52c727c08444a3c6ccceb75492504e59ad5e804")
+        (revision "0"))
+    (package
+      (name "emacs-org-social")
+      (version (git-version "1.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/tanrax/org-social.el";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "06izvlmqx2yhig84i4xfcc6wdv5jyj1jr3irc6xdwbvwpck2qbcg"))))
+      (build-system emacs-build-system)
+      (arguments (list #:tests? #f))
+      (propagated-inputs (list emacs-request))
+      (home-page "https://github.com/tanrax/org-social.el";)
+      (synopsis "Emacs client for Org-social")
+      (description
+       "This package provides an Emacs client for Org-social which is
+a decentralized social network that runs on an Org Mode file over HTTP.")
+      (license license:gpl3+))))
+
 (define-public emacs-fedi
   ;; One year since last tagged release.
   (let ((commit "62aea20f11161d2665180498e79aade7e5f5a114")

Reply via email to