mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Add "ddd": Graphical front-end for command-line debuggers.
svn path=/nixpkgs/trunk/; revision=12336
This commit is contained in:
parent
942199655b
commit
bb72d90805
2 changed files with 21 additions and 0 deletions
16
pkgs/development/tools/misc/ddd/default.nix
Normal file
16
pkgs/development/tools/misc/ddd/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue