diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-05 22:26:40 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-06 00:36:29 +0100 |
commit | b001388f6fe4dbd5f4135fd52df390e633a42695 (patch) | |
tree | 44f65eef892d4f4275729a07f9408f64a73a73d4 | |
parent | 70b8e1db1c5d11c1b2c4301dc1fe2f99b888c29f (diff) |
gnu: packages/graph: Sort use-module alphabetically.
* gnu/packages/graph.scm: Sort use-module alphabetically.
Change-Id: I7f8f6a26d0607cc7c3946891b425747370081989
-rw-r--r-- | gnu/packages/graph.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 2de9b0ee40..04d4248da3 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -29,17 +29,17 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages graph) - #:use-module (guix download) - #:use-module (guix gexp) - #:use-module (guix git-download) - #:use-module (guix packages) - #:use-module (guix utils) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix build-system r) - #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module (guix packages) + #:use-module (guix utils) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages base) |