Add "ddd": Graphical front-end for command-line debuggers.

svn path=/nixpkgs/trunk/; revision=12336
This commit is contained in:
Nicolas Pierron 2008-07-10 16:56:51 +00:00
parent 942199655b
commit bb72d90805
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{stdenv, fetchurl, lesstif, ncurses, libX11, libXt}:
stdenv.mkDerivation rec {
name = "ddd-3.3.11";
src = fetchurl {
url = "mirror://gnu/ddd/${name}.tar.gz";
sha256 = "a555d76e1d4d5fa092b190ffb99cdde8880131c063e4b53435df3a022ed4d3da";
};
buildInputs = [lesstif ncurses libX11 libXt];
configureFlags = "--with-x";
meta = {
homepage = http://www.gnu.org/software/ddd;
description = "Graphical front-end for command-line debuggers";
license = "GPLv2";
};
}

View file

@ -2051,6 +2051,11 @@ let pkgs = rec {
inherit fetchurl stdenv expect makeWrapper;
};
ddd = import ../development/tools/misc/ddd {
inherit fetchurl stdenv lesstif ncurses;
inherit (xlibs) libX11 libXt;
};
elfutilsFun = lib.sumArgs
(selectVersion ../development/tools/misc/elfutils "0.131") {
inherit fetchurl stdenv;