aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-02-04 14:04:22 +0100
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-02-04 14:11:10 +0100
commit03d2122c3a69192ef38241abc3c888904e7dd8ac (patch)
tree47d89efa6ba38052ba3c52444a55a3297e2352f2
parent9c072d1b0ac0c490b84d11bc4a43a5ae4ed5fac1 (diff)
chore: Update guix build script
-rw-r--r--guix.scm20
1 files changed, 10 insertions, 10 deletions
diff --git a/guix.scm b/guix.scm
index 1d6f191..691b670 100644
--- a/guix.scm
+++ b/guix.scm
@@ -1,14 +1,14 @@
(define-module (emacs-fdroid)
- #:use-module (ice-9 popen)
- #:use-module (ice-9 rdelim)
- #:use-module (guix packages)
- #:use-module (guix build-system emacs)
- #:use-module (guix git-download)
- #:use-module (gnu packages emacs-xyz)
#:use-module (gnu packages android)
+ #:use-module (gnu packages emacs-xyz)
#:use-module (guix build utils)
+ #:use-module (guix build-system emacs)
#:use-module (guix gexp)
- #:use-module ((guix licenses) #:prefix license:))
+ #:use-module (guix git-download)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages)
+ #:use-module (ice-9 popen)
+ #:use-module (ice-9 rdelim))
(define %source-dir (dirname (current-filename)))
@@ -34,9 +34,9 @@
(propagated-inputs
(list emacs-embark))
(home-page "https://git.sr.ht/~conses/fdroid.el")
- (synopsis "An Emacs interface to manage F-Droid repositories.")
- (description "fdroid.el is an Emacs interface to fdroidcl. Its purpose is to aid the
- management of F-Droid repository packages to be installed in an Android device from the comfort of Emacs.")
+ (synopsis "An Emacs interface to manage F-Droid repositories")
+ (description "fdroid.el is an Emacs interface to fdroidcl. Its purpose
+is to aid the management of F-Droid packages from the comfort of Emacs.")
(license license:gpl3+)))
emacs-fdroid