Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #146007 from kira-bruneau/ccache

ccache: 4.4.2 → 4.5

authored by Ryan Burns and committed by GitHub 9ef49d13 45c3d925

+7 -2
+7 -2
pkgs/development/tools/misc/ccache/default.nix
··· 10 10 , bashInteractive 11 11 , xcodebuild 12 12 , makeWrapper 13 + , nix-update-script 13 14 }: 14 15 15 16 let ccache = stdenv.mkDerivation rec { 16 17 pname = "ccache"; 17 - version = "4.4.2"; 18 + version = "4.5"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = pname; 21 22 repo = pname; 22 23 rev = "v${version}"; 23 - hash = "sha256-VtwykRX5so6LqyC0En/Jx7anXD7qW47zqq3awCY0lJE="; 24 + hash = "sha256-RRQso5j249PinoWznix4x4/NURe3TrwYlKOF4q8dc5U="; 24 25 }; 25 26 26 27 outputs = [ "out" "man" ]; ··· 107 108 done 108 109 ''; 109 110 }; 111 + }; 112 + 113 + passthru.updateScript = nix-update-script { 114 + attrPath = pname; 110 115 }; 111 116 112 117 meta = with lib; {