mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Refer to %GNU-BUILD-SYSTEM-MODULES instead of listing modules.
* gnu/packages/cdrom.scm (cdparanoia)[arguments]: Refer to %GNU-BUILD-SYSTEM-MODULES instead of providing the actual list. * gnu/packages/emacs.scm (magit, emacs-w3m, emacs-wget, emms): Likewise. * gnu/packages/haskell.scm (ghc): Likewise. * gnu/packages/samba.scm (samba): Likewise. * gnu/packages/video.scm (ffmpeg): Likewise.
This commit is contained in:
parent
8f3c3e84c2
commit
8ff3df5baa
5 changed files with 9 additions and 17 deletions
|
@ -169,8 +169,7 @@ (define-public cdparanoia
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build rpath)
|
(guix build rpath)
|
||||||
(srfi srfi-26))
|
(srfi srfi-26))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,@%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build rpath))
|
(guix build rpath))
|
||||||
#:phases
|
#:phases
|
||||||
(alist-cons-after
|
(alist-cons-after
|
||||||
|
|
|
@ -247,8 +247,7 @@ (define-public magit
|
||||||
`(#:modules ((guix build gnu-build-system)
|
`(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,@%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no check target
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -308,8 +307,7 @@ (define-public emacs-w3m
|
||||||
'(#:modules ((guix build gnu-build-system)
|
'(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,@%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
|
@ -376,8 +374,7 @@ (define-public emacs-wget
|
||||||
'(#:modules ((guix build gnu-build-system)
|
'(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:tests? #f ; no check target
|
#:tests? #f ; no check target
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -444,8 +441,7 @@ (define-public emms
|
||||||
'(#:modules ((guix build gnu-build-system)
|
'(#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
|
|
||||||
#:phases (alist-replace
|
#:phases (alist-replace
|
||||||
|
|
|
@ -110,8 +110,7 @@ (define-public ghc
|
||||||
(guix build rpath)
|
(guix build rpath)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
(srfi srfi-1))
|
(srfi srfi-1))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build rpath))
|
(guix build rpath))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list
|
(list
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -127,8 +127,7 @@ (define-public samba
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build rpath)
|
(guix build rpath)
|
||||||
(srfi srfi-26))
|
(srfi srfi-26))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build rpath))
|
(guix build rpath))
|
||||||
|
|
||||||
;; This flag is required to allow for "make test".
|
;; This flag is required to allow for "make test".
|
||||||
|
|
|
@ -283,8 +283,7 @@ (define-public ffmpeg
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(guix build rpath)
|
(guix build rpath)
|
||||||
(srfi srfi-26))
|
(srfi srfi-26))
|
||||||
#:imported-modules ((guix build gnu-build-system)
|
#:imported-modules (,@%gnu-build-system-modules
|
||||||
(guix build utils)
|
|
||||||
(guix build rpath))
|
(guix build rpath))
|
||||||
#:phases
|
#:phases
|
||||||
(alist-replace
|
(alist-replace
|
||||||
|
|
Loading…
Reference in a new issue