Forward port: ccache, FF3b3

svn path=/nixpkgs/branches/stdenv-updates/; revision=10694
This commit is contained in:
Michael Raskin
2008-02-14 20:18:07 +00:00
parent 80612bff71
commit d607e902af
5 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ccache-2.4";
src = fetchurl {
url = http://samba.org/ftp/ccache/ccache-2.4.tar.gz;
sha256 = "435f862ca5168c346f5aa9e242174bbf19a5abcaeecfceeac2f194558827aaa0";
};
meta = {
description = "ccache, a tool that caches compilation results.";
homepage = http://ccache.samba.org/;
license = "GPL";
};
}