nixpkgs/pkgs/development/tools/misc/ddd/default.nix
Lluís Batlle i Rossell ead553d9e5 Updating ddd, and adding a small patch for it to compile with gcc 4.4
svn path=/nixpkgs/trunk/; revision=20161
2010-02-22 08:08:29 +00:00

19 lines
501 B
Nix

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