Merge pull request #323946 from kira-bruneau/ccache

ccache: 4.10 -> 4.10.1
This commit is contained in:
h7x4 2024-07-02 18:32:46 +02:00 committed by GitHub
commit 45be0fcf65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
pname = "ccache"; pname = "ccache";
version = "4.10"; version = "4.10.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ccache"; owner = "ccache";
@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
exit 1 exit 1
fi fi
''; '';
hash = "sha256-YHSr2pnk17QEdrIHInXX2eBFN9OGjdleaB41VLaqlnA="; hash = "sha256-CUQ16VthGl2vtixOv8UGI9gCsb6iEVD9XHKAYivWMrw=";
}; };
outputs = [ outputs = [
@ -177,11 +177,11 @@ stdenv.mkDerivation (finalAttrs: {
builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version
}"; }";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
mainProgram = "ccache";
maintainers = with maintainers; [ maintainers = with maintainers; [
kira-bruneau kira-bruneau
r-burns r-burns
]; ];
platforms = platforms.unix; platforms = platforms.unix;
mainProgram = "ccache";
}; };
}) })