lol
at v206 20 lines 571 B view raw
1{stdenv, fetchurl, lesstif, 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 = [lesstif ncurses libX11 libXt]; 10 configureFlags = "--with-x"; 11 12 patches = [ ./gcc44.patch ]; 13 14 meta = { 15 homepage = http://www.gnu.org/software/ddd; 16 description = "Graphical front-end for command-line debuggers"; 17 license = stdenv.lib.licenses.gpl2; 18 platforms = stdenv.lib.platforms.linux; 19 }; 20}