about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ccache/default.nix
blob: dc1238cc47ed180abcb773810fce787801d965f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "ccache-3.0";
  src = fetchurl {
    url = http://samba.org/ftp/ccache/ccache-3.0.tar.gz;
    sha256 = "0mi8sfnlcp2pmp7nzb7894rv85v13zxrj0v3qgnwhny3gx2p5pgk";
  };

  meta = {
    description = "ccache, a tool that caches compilation results.";
    homepage = http://ccache.samba.org/;
    license = "GPL";
  };
}