summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2021-09-28 20:04:45 -0400
committerKira Bruneau <kira.bruneau@pm.me>2021-09-28 20:21:37 -0400
commit41a997c8b2cb191bd588d991cc11803c5e0eb24b (patch)
treefa5d77c03de7a3159c0664fe53278af8244a498b /pkgs/development/tools/misc
parent60dcbe9837101489af5f6db6171de3c3826224a2 (diff)
downloadnixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar.gz
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar.bz2
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar.lz
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar.xz
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.tar.zst
nixpkgs-41a997c8b2cb191bd588d991cc11803c5e0eb24b.zip
ccache: 4.4.1 → 4.4.2
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/ccache/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index a6fbacfa6f1..357a46c081c 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
 , fetchFromGitHub
-, fetchpatch
 , substituteAll
 , binutils
 , asciidoctor
@@ -15,25 +14,18 @@
 
 let ccache = stdenv.mkDerivation rec {
   pname = "ccache";
-  version = "4.4.1";
+  version = "4.4.2";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-zsJoaaxYVV78vsxq2nbOh9ZAU1giKp8Kh6qJFL120CQ=";
+    hash = "sha256-VtwykRX5so6LqyC0En/Jx7anXD7qW47zqq3awCY0lJE=";
   };
 
   outputs = [ "out" "man" ];
 
   patches = [
-    # Use the shell builtin pwd for the basedir test
-    # See https://github.com/ccache/ccache/pull/933
-    (fetchpatch {
-      url = "https://github.com/ccache/ccache/commit/58fd1fbe75a1b5dc3f9151947ace15164fdef91c.patch";
-      sha256 = "BoBn4YSDy8pQxJ+fQHSsrUZDBVeLFWXIQ6CunDwMO7o=";
-    })
-
     # When building for Darwin, test/run uses dwarfdump, whereas on
     # Linux it uses objdump. We don't have dwarfdump packaged for
     # Darwin, so this patch updates the test to also use objdump on