Update gdb to version 7.3. Add a bleedingEdgeVersion switch to use git
versions instead of releases. svn path=/nixpkgs/trunk/; revision=28712
This commit is contained in:
parent
3e6f39239d
commit
75b498717c
@ -1,21 +1,41 @@
|
|||||||
{ fetchurl, stdenv, ncurses, readline, gmp, mpfr, expat, texinfo
|
{ fetchurl, fetchgit, stdenv, ncurses, readline, gmp, mpfr, expat, texinfo
|
||||||
, dejagnu, python, target ? null }:
|
, dejagnu, python, target ? null
|
||||||
|
|
||||||
|
# Set it to true to fetch the latest release/branchpoint from git.
|
||||||
|
, bleedingEdgeVersion ? false
|
||||||
|
|
||||||
|
# needed for the git version
|
||||||
|
, flex, bison }:
|
||||||
|
|
||||||
let
|
let
|
||||||
basename = "gdb-7.2";
|
basename =
|
||||||
|
if bleedingEdgeVersion
|
||||||
|
then "gdb-7.3.20110726"
|
||||||
|
else "gdb-7.3";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = basename + stdenv.lib.optionalString (target != null)
|
name = basename + stdenv.lib.optionalString (target != null)
|
||||||
("-" + target.config);
|
("-" + target.config);
|
||||||
|
|
||||||
src = fetchurl {
|
src =
|
||||||
url = "mirror://gnu/gdb/${basename}.tar.bz2";
|
if bleedingEdgeVersion
|
||||||
sha256 = "1w0h6hya0bl46xddd57mdzwmffplwglhnh9x9hv46ll4mf44ni5z";
|
then fetchgit {
|
||||||
};
|
url = "git://sourceware.org/git/gdb.git";
|
||||||
|
rev = "refs/tags/gdb_7_3-2011-07-26-release";
|
||||||
|
}
|
||||||
|
else fetchurl {
|
||||||
|
url = "mirror://gnu/gdb/${basename}.tar.bz2";
|
||||||
|
# md5 is provided by the annoucement page
|
||||||
|
# http://www.gnu.org/s/gdb/download/ANNOUNCEMENT
|
||||||
|
md5 = "485022b8df7ba2221f217e128f479fe7";
|
||||||
|
};
|
||||||
|
|
||||||
# I think python is not a native input, but I leave it
|
# I think python is not a native input, but I leave it
|
||||||
# here while I will not need it cross building
|
# here while I will not need it cross building
|
||||||
buildNativeInputs = [ texinfo python ];
|
buildNativeInputs = [ texinfo python ]
|
||||||
|
++ stdenv.lib.optionals bleedingEdgeVersion [ flex bison ];
|
||||||
|
|
||||||
buildInputs = [ ncurses readline gmp mpfr expat ]
|
buildInputs = [ ncurses readline gmp mpfr expat ]
|
||||||
++ stdenv.lib.optional doCheck dejagnu;
|
++ stdenv.lib.optional doCheck dejagnu;
|
||||||
|
|
||||||
@ -42,7 +62,7 @@ stdenv.mkDerivation rec {
|
|||||||
# TODO: Investigate & fix the test failures.
|
# TODO: Investigate & fix the test failures.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "GDB, the GNU Project debugger";
|
description = "GDB, the GNU Project debugger";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -55,7 +75,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.cygwin;
|
platforms = with platforms; linux ++ cygwin;
|
||||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
maintainers = with maintainers; [ ludo pierron ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user