nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{stdenv, fetchurl, motif, ncurses, libX11, libXt}:
2
3stdenv.mkDerivation rec {
4 name = "ddd-3.3.12";
5 src = fetchurl {
6 url = "mirror://gnu/ddd/${name}.tar.gz";
7 sha256 = "0p5nx387857w3v2jbgvps2p6mlm0chajcdw5sfrddcglsxkwvmis";
8 };
9 buildInputs = [motif ncurses libX11 libXt];
10 configureFlags = [ "--with-x" ];
11
12 patches = [ ./gcc44.patch ];
13
14 NIX_CFLAGS_COMPILE = "-fpermissive";
15
16 meta = {
17 homepage = https://www.gnu.org/software/ddd;
18 description = "Graphical front-end for command-line debuggers";
19 license = stdenv.lib.licenses.gpl2;
20 platforms = stdenv.lib.platforms.linux;
21 };
22}