summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2016-02-24 15:45:44 +0100
committerLancelot SIX <lsix@lancelotsix.com>2016-02-24 15:55:20 +0100
commitd7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3 (patch)
tree2977843b914807e873ab1b92fd8298ee1351d1a5 /pkgs/development/tools
parent677893f92b37f3d49ba1f07045121dbb8e82f850 (diff)
downloadnixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar.gz
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar.bz2
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar.lz
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar.xz
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.tar.zst
nixlib-d7cb5f47d3db6aa3c14a0d9f2ba0ff0f288ee3d3.zip
gdb: 7.10 -> 7.11
See announcement hereĀ :
http://lists.gnu.org/archive/html/info-gnu/2016-02/msg00010.html
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/gdb/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix
index cdef2ee58ca9..472bb4de58b9 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -12,7 +12,7 @@
 
 let
 
-  basename = "gdb-7.10.1";
+  basename = "gdb-7.11";
 
   # Whether (cross-)building for GNU/Hurd.  This is an approximation since
   # having `stdenv ? cross' doesn't tell us if we're building `crossDrv' and
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnu/gdb/${basename}.tar.xz";
-    sha256 = "1mfnjcwnwm5cg4rc9pncs9v356a0bz6ymjyac56mbj6784yjzir5";
+    sha256 = "1hg5kwwdvi9b9nxzxfjnx8fx3gip75fqyvkp82xpf3b3rcb42hvs";
   };
 
   nativeBuildInputs = [ pkgconfig texinfo perl ]