Merge pull request #146007 from kira-bruneau/ccache

ccache: 4.4.2 → 4.5

Changed files
+7 -2
pkgs
development
tools
misc
ccache
+7 -2
pkgs/development/tools/misc/ccache/default.nix
···
, bashInteractive
, xcodebuild
, makeWrapper
+
, nix-update-script
}:
let ccache = stdenv.mkDerivation rec {
pname = "ccache";
-
version = "4.4.2";
+
version = "4.5";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
-
hash = "sha256-VtwykRX5so6LqyC0En/Jx7anXD7qW47zqq3awCY0lJE=";
+
hash = "sha256-RRQso5j249PinoWznix4x4/NURe3TrwYlKOF4q8dc5U=";
};
outputs = [ "out" "man" ];
···
done
'';
};
+
};
+
+
passthru.updateScript = nix-update-script {
+
attrPath = pname;
};
meta = with lib; {