From e131df67eea830a503f5f5fdfb5eccc650d776dc Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 10 Oct 2009 14:45:38 +0000 Subject: [PATCH] Update GDB svn path=/nixpkgs/trunk/; revision=17742 --- pkgs/development/tools/misc/gdb/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix index 63f5c4a5109..2a61b733a11 100644 --- a/pkgs/development/tools/misc/gdb/default.nix +++ b/pkgs/development/tools/misc/gdb/default.nix @@ -1,22 +1,17 @@ { fetchurl, stdenv, ncurses, readline, gmp, mpfr, texinfo }: stdenv.mkDerivation rec { - name = "gdb-6.8"; + name = "gdb-7.0"; src = fetchurl { url = "mirror://gnu/gdb/${name}.tar.bz2"; - sha256 = "067qpnpgmz9jffi208q5c981xsyn8naq3rkp5ypg477lddcgvpzf"; + sha256 = "1k9y271gnnvi0fny8ycydcd79snigwh88rgwi03ad782r2awcl67"; }; buildInputs = [ ncurses readline gmp mpfr texinfo ]; configureFlags = "--with-gmp=${gmp} --with-mpfr=${mpfr} --with-system-readline"; - postInstall = '' - # Remove Info files already provided by Binutils and other packages. - rm $out/info/{standards,configure,bfd}.info - ''; - meta = { description = "GDB, the GNU Project debugger";