2009-12-02 21:54:40 +01:00
|
|
|
{ fetchurl, stdenv, ncurses, readline, gmp, mpfr, expat, texinfo
|
2010-09-27 15:31:46 +02:00
|
|
|
, dejagnu, python, target ? null }:
|
2007-02-22 17:07:51 +01:00
|
|
|
|
2009-12-02 21:54:40 +01:00
|
|
|
let
|
2010-09-05 17:19:07 +02:00
|
|
|
basename = "gdb-7.2";
|
2009-12-02 21:54:40 +01:00
|
|
|
in
|
2007-11-16 18:30:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-12-02 21:54:40 +01:00
|
|
|
name = basename + stdenv.lib.optionalString (target != null)
|
|
|
|
("-" + target.config);
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2007-02-22 17:07:51 +01:00
|
|
|
src = fetchurl {
|
2009-12-02 21:54:40 +01:00
|
|
|
url = "mirror://gnu/gdb/${basename}.tar.bz2";
|
2010-09-05 17:19:07 +02:00
|
|
|
sha256 = "1w0h6hya0bl46xddd57mdzwmffplwglhnh9x9hv46ll4mf44ni5z";
|
2008-09-03 15:12:23 +02:00
|
|
|
};
|
|
|
|
|
2010-12-04 11:35:04 +01:00
|
|
|
# I think python is not a native input, but I leave it
|
|
|
|
# here while I will not need it cross building
|
|
|
|
buildNativeInputs = [ texinfo python ];
|
|
|
|
buildInputs = [ ncurses readline gmp mpfr expat ]
|
2010-09-05 17:19:07 +02:00
|
|
|
++ stdenv.lib.optional doCheck dejagnu;
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2009-10-28 23:25:50 +01:00
|
|
|
configureFlags =
|
|
|
|
'' --with-gmp=${gmp} --with-mpfr=${mpfr} --with-system-readline
|
|
|
|
--with-expat --with-libexpat-prefix=${expat}
|
2009-12-02 21:54:40 +01:00
|
|
|
'' + stdenv.lib.optionalString (target != null)
|
|
|
|
" --target=${target.config}";
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2010-12-04 11:35:04 +01:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags =
|
|
|
|
'' --with-gmp=${gmp.hostDrv} --with-mpfr=${mpfr.hostDrv} --with-system-readline
|
|
|
|
--with-expat --with-libexpat-prefix=${expat.hostDrv}
|
|
|
|
'' + stdenv.lib.optionalString (target != null)
|
|
|
|
" --target=${target.config}";
|
|
|
|
};
|
|
|
|
|
2009-10-28 23:25:50 +01:00
|
|
|
postInstall =
|
|
|
|
'' # Remove Info files already provided by Binutils and other packages.
|
|
|
|
rm -v $out/share/info/{standards,configure,bfd}.info
|
|
|
|
'';
|
2009-10-12 12:06:41 +02:00
|
|
|
|
2010-09-05 17:19:07 +02:00
|
|
|
# TODO: Investigate & fix the test failures.
|
|
|
|
doCheck = false;
|
|
|
|
|
2008-09-03 15:12:23 +02:00
|
|
|
meta = {
|
|
|
|
description = "GDB, the GNU Project debugger";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GDB, the GNU Project debugger, allows you to see what is going
|
|
|
|
on `inside' another program while it executes -- or what another
|
|
|
|
program was doing at the moment it crashed.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/gdb/;
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
2009-09-23 21:45:02 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.cygwin;
|
2009-10-28 23:25:50 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2007-02-22 17:07:51 +01:00
|
|
|
};
|
|
|
|
}
|