summary refs log tree commit diff
path: root/pkgs/development/tools/misc/gdb
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-02-02 18:18:04 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-02-02 18:47:01 +0200
commit33e744a5b4cbc8efdd3da870d3fab47c06d49227 (patch)
tree972b8740afe48e1d081f59ffd9b9a6f36c971acb /pkgs/development/tools/misc/gdb
parent2a09b4275c353bde6ee72d126cd0e99834dcf66e (diff)
downloadnixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar.gz
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar.bz2
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar.lz
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar.xz
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.tar.zst
nixlib-33e744a5b4cbc8efdd3da870d3fab47c06d49227.zip
gdb: 8.0.1 -> 8.1
Diffstat (limited to 'pkgs/development/tools/misc/gdb')
-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 d1148ad48d82..e068b908caf4 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.0.1";
+  version = "8.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 = "1qwmcbaxf0jc7yjl0fimgcfj2yqcrl6h7azgs1d838kbwf9mzg9x";
+    sha256 = "0d2bpqk58fqlx21rbnk8mbcjlggzc9kb5sjirrfrrrjq70ka0qdg";
   };
 
   patches = [ ./debug-info-from-env.patch ];