Merge pull request #286762 from r-ryantm/auto-update/ccache

ccache: 4.9 -> 4.9.1
This commit is contained in:
Kira Bruneau 2024-02-09 21:29:27 -05:00 committed by GitHub
commit e015128766
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 4 deletions

View file

@ -15,13 +15,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ccache";
version = "4.9";
version = "4.9.1";
src = fetchFromGitHub {
owner = "ccache";
repo = "ccache";
rev = "refs/tags/v${finalAttrs.version}";
sha256 = "sha256-/R9ReX1l3okUuVD93IdomoaBTYdKvuIuggyk0sJoYmg=";
sha256 = "sha256-n0MTq8x6KNkgwhJQG7F+e3iCOS644nLkMsiRztJe8QU=";
};
outputs = [ "out" "man" ];

View file

@ -18667,8 +18667,6 @@ with pkgs;
cc-tool = callPackage ../development/embedded/cc-tool { };
ccache = callPackage ../development/tools/misc/ccache { };
# Wrapper that works as gcc or g++
# It can be used by setting in nixpkgs config like this, for example:
# replaceStdenv = { pkgs }: pkgs.ccacheStdenv;