gnu: ccache: Gexp arguments.
* gnu/packages/ccache.scm (ccache)[arguments]: Rewrite as a keyword/gexp list.master
parent
f2e0e576d9
commit
7c8dddb16f
|
@ -20,6 +20,7 @@
|
|||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
(define-module (gnu packages ccache)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module ((guix licenses) #:select (gpl3+))
|
||||
#:use-module (guix download)
|
||||
|
@ -45,12 +46,11 @@
|
|||
(inputs (list zlib
|
||||
`(,zstd "lib")))
|
||||
(arguments
|
||||
'( ;; The Redis backend must be explicitly disabled to build without Redis.
|
||||
#:configure-flags
|
||||
'("-DREDIS_STORAGE_BACKEND=OFF")
|
||||
|
||||
(list #:configure-flags
|
||||
;; The backend must be explicitly disabled to build without Redis.
|
||||
#~(list "-DREDIS_STORAGE_BACKEND=OFF")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'configure 'fix-shell
|
||||
;; Run early whilst we're still in the source directory.
|
||||
(lambda _
|
||||
|
|
Reference in New Issue