d4d7931a62
svn path=/nixpkgs/branches/stdenv-updates/; revision=31678
22 lines
664 B
Nix
22 lines
664 B
Nix
{stdenv, fetchurl, gtk, gperf, pkgconfig, bzip2, tcl, tk, judy} :
|
|
stdenv.mkDerivation rec {
|
|
name = "gtkwave-3.3.28";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
|
|
sha256 = "0y3dmx39xwc3m23fwjkxvp9gqxpckk8s5814nhs8fnxa384z5cz0";
|
|
};
|
|
|
|
buildInputs = [ gtk gperf pkgconfig bzip2 tcl tk judy];
|
|
|
|
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 = "GPLv2+";
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|