1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
4 ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
6 ;;; This file is part of GNU Guix.
8 ;;; GNU Guix is free software; you can redistribute it and/or modify it
9 ;;; under the terms of the GNU General Public License as published by
10 ;;; the Free Software Foundation; either version 3 of the License, or (at
11 ;;; your option) any later version.
13 ;;; GNU Guix is distributed in the hope that it will be useful, but
14 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;;; GNU General Public License for more details.
18 ;;; You should have received a copy of the GNU General Public License
19 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
22 #:use-module (guix i18n)
23 #:use-module (guix utils)
24 #:use-module (srfi srfi-34)
25 #:use-module (srfi srfi-35)
26 #:use-module (ice-9 match)
27 #:use-module (guix packages)
28 #:use-module (gnu packages)
29 #:use-module (gnu services)
30 #:export (use-package-modules
36 ;;; This composite module re-exports core parts the (gnu …) public modules.
40 (eval-when (eval load compile)
42 (define %public-modules
44 (gnu system mapped-devices)
45 (gnu system file-systems)
49 (gnu system shadow) ; 'user-account'
50 (gnu system linux-initrd)
56 (guix gexp))) ; so gexps can be used
58 (for-each (let ((i (module-public-interface (current-module))))
60 (module-use! i (resolve-interface m))))
63 (define (%try-use-modules modules location make-hint)
64 "Attempt to load all of MODULES. Report errors as coming from LOCATION, a
65 <location> record, and use MAKE-HINT to produce a fix hint."
66 (define (location->string loc)
69 (($ <location> file line column)
70 (format #f "~a:~a:~a: " file line column))))
72 (for-each (lambda (module)
75 (process-use-modules `((,module))))
79 make-compound-condition
82 (message (format #f (G_ "module ~a not found")
85 (&error-location (location location)))
86 (or (and=> (make-hint module) list)
90 (define (package-module-hint module)
94 (symbol->string last))))
96 (match (find-packages-by-name last-name)
101 You may use @command{guix package --show=foo | grep location} to search
102 for the location of package @code{foo}.
103 If you get the line @code{location: gnu/packages/bar.scm:174:2},
104 add @code{bar} to the @code{use-package-modules} form.")))))
108 (hint (format #f (G_ "\
109 Try adding @code{(use-package-modules ~a)}.")
110 (basename (location-file (package-location package))
113 (define (service-module-hint module)
119 (match (lookup-service-types last-name)
123 (hint (format #f (G_ "\
124 You may use @command{guix system search ~a} to search for a service
126 If you get the line @code{location: gnu/services/foo.scm:188:2},
127 add @code{foo} to the @code{use-service-modules} form.")
128 last-name last-name)))))
132 (hint (format #f (G_ "\
133 Try adding @code{(use-service-modules ~a)}.")
134 (basename (location-file (service-type-location package))
137 (define-syntax-rule (try-use-modules hint modules ...)
138 (eval-when (expand load eval)
139 (%try-use-modules '(modules ...)
140 (source-properties->location
141 (current-source-location))
144 (define-syntax-rule (use-package-modules module ...)
145 (try-use-modules package-module-hint
146 (gnu packages module) ...))
148 (define-syntax-rule (use-service-modules module ...)
149 (try-use-modules service-module-hint
150 (gnu services module) ...))
152 (define-syntax-rule (use-system-modules module ...)
153 (try-use-modules (const #f) ;no hint
154 (gnu system module) ...))
156 ;;; gnu.scm ends here