diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-06-08 09:24:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-06-08 09:25:49 +0200 |
commit | dfed76e4ab38b87c5038c740224ddf8d2f627346 (patch) | |
tree | 09b778dce37ddd02ce3dbfa27830a08baa9128a0 | |
parent | 6b752bd29a8d7adfb085e59efb170a27f8b805fd (diff) |
gnu: pantheon: Use modern 'define-module' syntax.
The :prefix bit introduced in 9f59a9b4bc93b3ef6cd3bd1c9eed04c30ba2d2d4
led to a test failure in 'tests/graph.scm'.
* gnu/packages/pantheon.scm: Write #:prefix, not :prefix.
-rw-r--r-- | gnu/packages/pantheon.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm index 249c27e4db..6e78f45e14 100644 --- a/gnu/packages/pantheon.scm +++ b/gnu/packages/pantheon.scm @@ -30,7 +30,7 @@ #:use-module (gnu packages) #:use-module (guix build-system meson) #:use-module (guix git-download) - #:use-module ((guix licenses) :prefix license:) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix utils)) |