Making gtkwave more featured, adding more buildInputs.

svn path=/nixpkgs/trunk/; revision=22133
This commit is contained in:
Lluís Batlle i Rossell
2010-06-03 15:37:02 +00:00
parent 8fafef2b8f
commit 02ea8daffa
3 changed files with 25 additions and 3 deletions
@@ -1,4 +1,4 @@
{stdenv, fetchurl, gtk, gperf, pkgconfig, bzip2, xz} :
{stdenv, fetchurl, gtk, gperf, pkgconfig, bzip2, xz, tcl, tk, judy} :
stdenv.mkDerivation rec {
name = "gtkwave-3.3.6";
@@ -7,7 +7,9 @@ stdenv.mkDerivation rec {
sha256 = "0vlayjvhmijcg4pbjix9lm1d5n2wxzcn16lkm2ysgpc8q6987df8";
};
buildInputs = [ gtk gperf pkgconfig bzip2 xz ];
buildInputs = [ gtk gperf pkgconfig bzip2 xz tcl tk judy];
configureFlags = [ "--with-tcl=${tcl}/lib" "--with-tk=${tk}/lib" "--enable-judy" ];
meta = {
description = "Wave viewer for Unix and Win32";