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