2021-01-23 12:26:19 +00:00
|
|
|
{lib, 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
|
|
|
|
2019-11-04 21:47:18 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
|
|
|
2014-10-15 10:15:45 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/ddd";
|
2014-10-15 10:15:45 +01:00
|
|
|
description = "Graphical front-end for command-line debuggers";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.linux;
|
2014-10-15 10:15:45 +01:00
|
|
|
};
|
2008-07-10 17:56:51 +01:00
|
|
|
}
|