2012-06-27 11:21:44 -07:00
|
|
|
{ fetchurl, stdenv, ncurses, readline, gmp, mpfr, expat, texinfo
|
2011-08-20 07:30:23 -07:00
|
|
|
, dejagnu, python, target ? null
|
|
|
|
|
2011-11-19 10:28:10 -08:00
|
|
|
# Additional dependencies for GNU/Hurd.
|
|
|
|
, mig ? null, hurd ? null
|
|
|
|
|
2012-06-21 06:28:17 -07:00
|
|
|
}:
|
2007-02-22 08:07:51 -08:00
|
|
|
|
2009-12-02 12:54:40 -08:00
|
|
|
let
|
2012-06-21 06:28:17 -07:00
|
|
|
|
2013-12-13 18:36:56 -08:00
|
|
|
basename = "gdb-7.6.2";
|
2011-11-19 10:28:10 -08:00
|
|
|
|
|
|
|
# Whether (cross-)building for GNU/Hurd. This is an approximation since
|
2012-12-28 10:08:19 -08:00
|
|
|
# having `stdenv ? cross' doesn't tell us if we're building `crossDrv' and
|
|
|
|
# `nativeDrv'.
|
2011-11-19 10:28:10 -08:00
|
|
|
isGNU =
|
2011-11-19 12:37:44 -08:00
|
|
|
stdenv.system == "i686-gnu"
|
2011-11-19 10:28:10 -08:00
|
|
|
|| (stdenv ? cross && stdenv.cross.config == "i586-pc-gnu");
|
2012-06-21 06:28:17 -07:00
|
|
|
|
2009-12-02 12:54:40 -08:00
|
|
|
in
|
2011-08-20 07:30:23 -07:00
|
|
|
|
2011-11-19 10:28:10 -08:00
|
|
|
assert isGNU -> mig != null && hurd != null;
|
|
|
|
|
2007-11-16 09:30:34 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2009-12-02 12:54:40 -08:00
|
|
|
name = basename + stdenv.lib.optionalString (target != null)
|
|
|
|
("-" + target.config);
|
2008-09-03 06:12:23 -07:00
|
|
|
|
2012-06-21 06:28:17 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/gdb/${basename}.tar.bz2";
|
2013-12-13 18:36:56 -08:00
|
|
|
sha256 = "1s6hjqmq7xz10hqx45dgrpfh5mla578shn3zxgnrsv66w4n0wsig";
|
2012-06-21 06:28:17 -07:00
|
|
|
};
|
2008-09-03 06:12:23 -07:00
|
|
|
|
2010-12-04 02:35:04 -08:00
|
|
|
# I think python is not a native input, but I leave it
|
|
|
|
# here while I will not need it cross building
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ texinfo python ]
|
2012-06-21 06:28:17 -07:00
|
|
|
++ stdenv.lib.optional isGNU mig;
|
2011-08-20 07:30:23 -07:00
|
|
|
|
2010-12-04 02:35:04 -08:00
|
|
|
buildInputs = [ ncurses readline gmp mpfr expat ]
|
2011-11-19 10:28:10 -08:00
|
|
|
++ stdenv.lib.optional isGNU hurd
|
2010-09-05 08:19:07 -07:00
|
|
|
++ stdenv.lib.optional doCheck dejagnu;
|
2008-09-03 06:12:23 -07:00
|
|
|
|
2012-06-21 06:28:17 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-08-21 08:36:33 -07:00
|
|
|
configureFlags = with stdenv.lib;
|
2009-10-28 15:25:50 -07:00
|
|
|
'' --with-gmp=${gmp} --with-mpfr=${mpfr} --with-system-readline
|
2011-08-27 08:29:04 -07:00
|
|
|
--with-expat --with-libexpat-prefix=${expat}
|
2011-08-21 08:36:33 -07:00
|
|
|
''
|
|
|
|
+ optionalString (target != null) " --target=${target.config}"
|
2012-06-21 06:28:17 -07:00
|
|
|
+ optionalString (elem stdenv.system platforms.cygwin) " --without-python";
|
2008-09-03 06:12:23 -07:00
|
|
|
|
2010-12-04 02:35:04 -08:00
|
|
|
crossAttrs = {
|
2011-06-13 19:39:03 -07:00
|
|
|
# Do not add --with-python here to avoid cross building it.
|
2010-12-04 02:35:04 -08:00
|
|
|
configureFlags =
|
2012-12-28 10:08:19 -08:00
|
|
|
'' --with-gmp=${gmp.crossDrv} --with-mpfr=${mpfr.crossDrv} --with-system-readline
|
|
|
|
--with-expat --with-libexpat-prefix=${expat.crossDrv} --without-python
|
2010-12-04 02:35:04 -08:00
|
|
|
'' + stdenv.lib.optionalString (target != null)
|
|
|
|
" --target=${target.config}";
|
|
|
|
};
|
|
|
|
|
2009-10-28 15:25:50 -07:00
|
|
|
postInstall =
|
|
|
|
'' # Remove Info files already provided by Binutils and other packages.
|
|
|
|
rm -v $out/share/info/{standards,configure,bfd}.info
|
|
|
|
'';
|
2009-10-12 03:06:41 -07:00
|
|
|
|
2010-09-05 08:19:07 -07:00
|
|
|
# TODO: Investigate & fix the test failures.
|
|
|
|
doCheck = false;
|
|
|
|
|
2011-08-20 07:30:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
2008-09-03 06:12:23 -07:00
|
|
|
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 12:45:02 -07:00
|
|
|
|
2014-01-15 06:33:31 -08:00
|
|
|
platforms = with platforms; linux ++ cygwin ++ darwin;
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = with maintainers; [ pierron ];
|
2007-02-22 08:07:51 -08:00
|
|
|
};
|
|
|
|
}
|