about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-08-06 13:09:03 -0500
committerWill Dietz <w@wdtz.org>2018-08-06 13:29:57 -0500
commit64423342c3900601e7b7e0b8d5d91cca532720fe (patch)
tree1dcb4ec49b621f0dd21b926530b5d0f7e8098574 /pkgs/development
parent05daf390b3a2d391d8990cb647e2ab3ab6487cf3 (diff)
downloadnixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar.gz
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar.bz2
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar.lz
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar.xz
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.tar.zst
nixlib-64423342c3900601e7b7e0b8d5d91cca532720fe.zip
gdb: 8.1 -> 8.1.1
https://www.gnu.org/software/gdb/download/ANNOUNCEMENT
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 b5840d074668..ae59f85a211e 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -18,7 +18,7 @@
 
 let
   basename = "gdb-${version}";
-  version = "8.1";
+  version = "8.1.1";
 in
 
 assert targetPlatform.isHurd -> mig != null && hurd != null;
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnu/gdb/${basename}.tar.xz";
-    sha256 = "0d2bpqk58fqlx21rbnk8mbcjlggzc9kb5sjirrfrrrjq70ka0qdg";
+    sha256 = "0g6hv9xk12aa58w77fydaldqr9a6b0a6bnwsq87jfc6lkcbc7p4p";
   };
 
   patches = [ ./debug-info-from-env.patch ]