diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-03-31 15:40:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-03-31 15:41:46 +0200 |
commit | 1410383dee23da457eabcf9162196c3a57fb8950 (patch) | |
tree | b970c9425beabe0f982c1b1a387e2c811fc0c41b | |
parent | 4f547c50f9bc478fd7c8bb9d481e2e376b969e8a (diff) | |
download | guix-1410383dee23da457eabcf9162196c3a57fb8950.tar guix-1410383dee23da457eabcf9162196c3a57fb8950.tar.gz |
gnu: Remove unnecessary imports from (gnu packages gnome).
* gnu/packages/gnome.scm: Remove unnecessary #:use-module forms.
In particular, the (guix store) import led to a name clash with 'build'
from (gnu packages build-tools).
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1e8af1c41f..1e2ee4a46e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr> -;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2014, 2016, 2020 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch> @@ -201,7 +201,6 @@ #:use-module (gnu packages xml) #:use-module (gnu packages xorg) #:use-module (gnu artwork) - #:use-module ((guix build utils) #:select (modify-phases)) #:use-module (guix build-system cargo) #:use-module (guix build-system cmake) #:use-module (guix build-system glib-or-gtk) @@ -215,8 +214,6 @@ #:use-module (guix packages) #:use-module (guix utils) #:use-module (guix gexp) - #:use-module (guix monads) - #:use-module (guix store) #:use-module (ice-9 match) #:use-module (srfi srfi-1)) |