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