gnu: guix: Update to 0.10.0.
[jackhill/guix/guix.git] / gnu / packages / ccache.scm
CommitLineData
5bbd6bf1 1;;; GNU Guix --- Functional package management for GNU
6009df63 2;;; Copyright © 2014, 2015, 2016 Eric Bavier <bavier@member.fsf.org>
5bbd6bf1
EB
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages ccache)
20 #:use-module (guix packages)
21 #:use-module ((guix licenses) #:select (gpl3+))
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages)
25 #:use-module (gnu packages perl)
26 #:use-module (gnu packages compression))
27
28(define-public ccache
29 (package
30 (name "ccache")
6009df63 31 (version "3.2.4")
5bbd6bf1
EB
32 (source
33 (origin
34 (method url-fetch)
35 (uri (string-append "https://www.samba.org/ftp/ccache/ccache-"
36 version ".tar.xz"))
37 (sha256
38 (base32
6009df63 39 "0pga3hvd80f2p7mz88jmmbwzxh4vn5ihyjx5f6na8y2fclzsjg8w"))))
5bbd6bf1
EB
40 (build-system gnu-build-system)
41 (native-inputs `(("perl" ,perl))) ;for test.sh
42 (inputs `(("zlib" ,zlib)))
43 (arguments
44 '(#:phases (alist-cons-before
107db20d 45 'check 'setup-tests
5bbd6bf1
EB
46 (lambda _
47 (substitute* '("test/test_hashutil.c" "test.sh")
107db20d 48 (("#!/bin/sh") (string-append "#!" (which "sh"))))
107db20d 49 #t)
5bbd6bf1
EB
50 %standard-phases)))
51 (home-page "https://ccache.samba.org/")
52 (synopsis "Compiler cache")
53 (description
54 "Ccache is a compiler cache. It speeds up recompilation by caching
55previous compilations and detecting when the same compilation is being done
56again. Supported languages are C, C++, Objective-C and Objective-C++.")
57 (license gpl3+)))