Unverified Commit e0151287 authored by Kira Bruneau's avatar Kira Bruneau Committed by GitHub
Browse files

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

ccache: 4.9 -> 4.9.1
parents 11cd4052 ae800735
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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" ];
+0 −2
Original line number Diff line number Diff line
@@ -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;