2016-07-28 02:43:44 +01:00
|
|
|
{stdenv, fetchurl, motif, ncurses, libX11, libXt}:
|
2008-07-10 17:56:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-02-22 08:08:29 +00:00
|
|
|
name = "ddd-3.3.12";
|
2008-07-10 17:56:51 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/ddd/${name}.tar.gz";
|
2010-02-22 08:08:29 +00:00
|
|
|
sha256 = "0p5nx387857w3v2jbgvps2p6mlm0chajcdw5sfrddcglsxkwvmis";
|
2008-07-10 17:56:51 +01:00
|
|
|
};
|
2016-07-28 02:43:44 +01:00
|
|
|
buildInputs = [motif ncurses libX11 libXt];
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-x" ];
|
2010-02-22 08:08:29 +00:00
|
|
|
|
|
|
|
patches = [ ./gcc44.patch ];
|
2014-10-15 10:15:45 +01:00
|
|
|
|
|
|
|
meta = {
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/ddd;
|
2014-10-15 10:15:45 +01:00
|
|
|
description = "Graphical front-end for command-line debuggers";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2008-07-10 17:56:51 +01:00
|
|
|
}
|