mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add prefix to license imports in (gnu packages feh).
* gnu/packages/feh.scm: Import (guix licenses) with #:prefix license: to avoid importing 'imlib2' from both (gnu packages image) and (guix licenses).
This commit is contained in:
parent
6becfdff76
commit
4e2f98c539
1 changed files with 4 additions and 3 deletions
|
@ -24,7 +24,7 @@ (define-module (gnu packages feh)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix licenses))
|
||||
#:use-module ((guix licenses) #:prefix license:))
|
||||
|
||||
(define-public feh
|
||||
(package
|
||||
|
@ -61,5 +61,6 @@ (define-public feh
|
|||
;; The license is really the Expat license, with additional wording in the
|
||||
;; 2nd paragraph: "acknowledgment shall be given in the documentation and
|
||||
;; software packages that this Software was used."
|
||||
(license (x11-style "file://COPYING"
|
||||
"See 'COPYING' in the distribution."))))
|
||||
(license (license:x11-style
|
||||
"file://COPYING"
|
||||
"See 'COPYING' in the distribution."))))
|
||||
|
|
Loading…
Reference in a new issue