summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-09-08 09:22:53 +0200
committerRobin Gloster <mail@glob.in>2017-09-08 17:51:23 +0200
commit653cad7a3ced572d92f611e14b180eb54e0124bf (patch)
tree058f0bef981e7091bd8357fea1daaff809f1fc03 /pkgs/development
parent9897303cd61e5183bfa60dcd0360832235154d01 (diff)
downloadnixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar.gz
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar.bz2
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar.lz
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar.xz
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.tar.zst
nixpkgs-653cad7a3ced572d92f611e14b180eb54e0124bf.zip
gdb: 8.0 -> 8.0.1
See http://lists.gnu.org/archive/html/info-gnu/2017-09/msg00005.html
for release information.
Diffstat (limited to 'pkgs/development')
-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 02ff52155b1..1ee2a270b49 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -17,7 +17,7 @@
 
 let
   basename = "gdb-${version}";
-  version = "8.0";
+  version = "8.0.1";
 in
 
 assert targetPlatform.isHurd -> mig != null && hurd != null;
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnu/gdb/${basename}.tar.xz";
-    sha256 = "1vplyf8v70yn0rdqjx6awl9nmfbwaj5ynwwjxwa71rhp97z4z8pn";
+    sha256 = "1qwmcbaxf0jc7yjl0fimgcfj2yqcrl6h7azgs1d838kbwf9mzg9x";
   };
 
   patches = [ ./debug-info-from-env.patch ];