summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ddd
diff options
context:
space:
mode:
authorNicolas Pierron <nicolas.b.pierron@gmail.com>2008-07-10 16:56:51 +0000
committerNicolas Pierron <nicolas.b.pierron@gmail.com>2008-07-10 16:56:51 +0000
commitbb72d9080500f418630f96ee7ed5c437a5704f8f (patch)
tree3da9ca8d86a33d0643461c63754d93200bb490bc /pkgs/development/tools/misc/ddd
parent942199655bea077a5732c293493641b1b2df7d9b (diff)
downloadnixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar.gz
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar.bz2
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar.lz
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar.xz
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.tar.zst
nixpkgs-bb72d9080500f418630f96ee7ed5c437a5704f8f.zip
Add "ddd": Graphical front-end for command-line debuggers.
svn path=/nixpkgs/trunk/; revision=12336
Diffstat (limited to 'pkgs/development/tools/misc/ddd')
-rw-r--r--pkgs/development/tools/misc/ddd/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/ddd/default.nix b/pkgs/development/tools/misc/ddd/default.nix
new file mode 100644
index 00000000000..62b94d34638
--- /dev/null
+++ b/pkgs/development/tools/misc/ddd/default.nix
@@ -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";
+	};
+}