summary refs log tree commit diff
path: root/pkgs/development/libraries/gperftools
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-06-08 06:41:46 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-06-08 06:41:46 -0700
commit769fa7ad769d38ce86f14536c453826fd67e77ce (patch)
tree9841aa17b63c5b5c9528798b8b514f137d2ab2e8 /pkgs/development/libraries/gperftools
parent07ebb8bb792be16de33596e2cea120eb72b2ec77 (diff)
downloadnixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar.gz
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar.bz2
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar.lz
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar.xz
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.tar.zst
nixpkgs-769fa7ad769d38ce86f14536c453826fd67e77ce.zip
gperftools: 2.6.3 -> 2.7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/gperftools/versions.

These checks were done:

- built on NixOS
- /nix/store/8y8rcib0axcnrrq1xvg9yn3vn3i2a323-gperftools-2.7/bin/pprof passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 2.7 with grep in /nix/store/8y8rcib0axcnrrq1xvg9yn3vn3i2a323-gperftools-2.7
- directory tree listing: https://gist.github.com/563708d434af605d1d26161b144b73c0
- du listing: https://gist.github.com/6feff1a0de5dc812f3e49aa97551174a
Diffstat (limited to 'pkgs/development/libraries/gperftools')
-rw-r--r--pkgs/development/libraries/gperftools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gperftools/default.nix b/pkgs/development/libraries/gperftools/default.nix
index de71704cff8..a532f5b7f66 100644
--- a/pkgs/development/libraries/gperftools/default.nix
+++ b/pkgs/development/libraries/gperftools/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, libunwind }:
 
 stdenv.mkDerivation rec {
-  name = "gperftools-2.6.3";
+  name = "gperftools-2.7";
 
   src = fetchurl {
     url = "https://github.com/gperftools/gperftools/releases/download/${name}/${name}.tar.gz";
-    sha256 = "17zfivp6n00rlqbrx6q6h71y2f815nvlzysff1ihgk4mxpv2yjri";
+    sha256 = "1jb30zxmw7h9qxa8yi76rfxj4ssk60rv8n9y41m6pzqfk9lwis0y";
   };
 
   buildInputs = stdenv.lib.optional stdenv.isLinux libunwind;