22 lines
693 B
Nix
22 lines
693 B
Nix
{stdenv, fetchurl, gtk2, gperf, pkgconfig, bzip2, tcl, tk, judy, xz}:
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkwave-3.3.70";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
|
|
sha256 = "1akzf1sq8mwarrbrbz5chrvgwlsp444h5za8rg1dfyqk733s7piz";
|
|
};
|
|
|
|
buildInputs = [ gtk2 gperf pkgconfig bzip2 tcl tk judy xz ];
|
|
|
|
configureFlags = [ "--with-tcl=${tcl}/lib" "--with-tk=${tk}/lib" "--enable-judy" ];
|
|
|
|
meta = {
|
|
description = "Wave viewer for Unix and Win32";
|
|
homepage = http://gtkwave.sourceforge.net;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|