gnu: ccache: Update to 3.4.
* gnu/packages/ccache.scm: Update to 3.4.
This commit is contained in:
		
							parent
							
								
									d1d9206180
								
							
						
					
					
						commit
						f3b9db9ca1
					
				
					 1 changed files with 9 additions and 4 deletions
				
			
		| 
						 | 
					@ -31,21 +31,26 @@
 | 
				
			||||||
(define-public ccache
 | 
					(define-public ccache
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "ccache")
 | 
					    (name "ccache")
 | 
				
			||||||
    (version "4.3")
 | 
					    (version "4.4")
 | 
				
			||||||
    (source
 | 
					    (source
 | 
				
			||||||
     (origin
 | 
					     (origin
 | 
				
			||||||
       (method url-fetch)
 | 
					       (method url-fetch)
 | 
				
			||||||
       (uri (string-append "https://github.com/ccache/ccache/releases/download/v"
 | 
					       (uri (string-append "https://github.com/ccache/ccache/releases/download/v"
 | 
				
			||||||
                           version "/ccache-" version ".tar.xz"))
 | 
					                           version "/ccache-" version ".tar.xz"))
 | 
				
			||||||
       (sha256
 | 
					       (sha256
 | 
				
			||||||
        (base32 "1d4995lkmqshzfxlmbyn101m1rxs02yb8dgh4rl30p26hhhhyjjh"))))
 | 
					        (base32 "0qbmcs6c3m071vsd1ppa31r8s0dzpaw5y38z8ga1bz48rwpfl2xl"))))
 | 
				
			||||||
    (build-system cmake-build-system)
 | 
					    (build-system cmake-build-system)
 | 
				
			||||||
    (native-inputs `(("perl" ,perl)     ; for test/run
 | 
					    (native-inputs `(("perl" ,perl)     ; for test/run
 | 
				
			||||||
                     ("which" ,(@ (gnu packages base) which))))
 | 
					                     ("which" ,(@ (gnu packages base) which))))
 | 
				
			||||||
    (inputs `(("zlib" ,zlib)
 | 
					    (inputs `(("zlib" ,zlib)
 | 
				
			||||||
              ("zstd" ,zstd "lib")))
 | 
					              ("zstd" ,zstd "lib")))
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     '(#:phases
 | 
					     '(;; Disable redis backend explicitly. Build system insists on present dependency
 | 
				
			||||||
 | 
					       ;; or on explicit flag.
 | 
				
			||||||
 | 
					       #:configure-flags
 | 
				
			||||||
 | 
					       '("-DREDIS_STORAGE_BACKEND=OFF")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					       #:phases
 | 
				
			||||||
       (modify-phases %standard-phases
 | 
					       (modify-phases %standard-phases
 | 
				
			||||||
         (add-before 'configure 'setup-tests
 | 
					         (add-before 'configure 'setup-tests
 | 
				
			||||||
           (lambda _
 | 
					           (lambda _
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue