summary refs log tree commit diff
path: root/pkgs/development/tools/misc/ddd/default.nix
blob: ecb198d724804cc77a158f4fc736eb0a035092e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{lib, stdenv, fetchurl, motif, ncurses, libX11, libXt}:

stdenv.mkDerivation rec {
  pname = "ddd";
  version = "3.3.12";
  src = fetchurl {
    url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz";
    sha256 = "0p5nx387857w3v2jbgvps2p6mlm0chajcdw5sfrddcglsxkwvmis";
  };
  buildInputs = [motif ncurses libX11 libXt];
  configureFlags = [ "--with-x" ];

  patches = [
    # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504868
    ./gcc44.patch
  ];

  NIX_CFLAGS_COMPILE = "-fpermissive";

  postInstall = ''
    install -D icons/ddd.xpm $out/share/pixmaps/ddd.xpm
  '';

  meta = {
    homepage = "https://www.gnu.org/software/ddd";
    description = "Graphical front-end for command-line debuggers";
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ angustrau ];
  };
}