Skip to content

Commit

Permalink
nixpkgs: gtkwave 3.3.70 -> 3.3.86
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed Oct 17, 2017
1 parent be73e42 commit 26891c5
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions pkgs/applications/science/electronics/gtkwave/default.nix
@@ -1,10 +1,12 @@
{stdenv, fetchurl, gtk2, gperf, pkgconfig, bzip2, tcl, tk, judy, xz}:

stdenv.mkDerivation rec {
name = "gtkwave-3.3.70";
name = "gtkwave-${version}";
version = "3.3.86";

src = fetchurl {
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
sha256 = "1akzf1sq8mwarrbrbz5chrvgwlsp444h5za8rg1dfyqk733s7piz";
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
sha256 = "1l1hikhhk7drkbpdmj9qg7c3lj1b86z7f5rnwagrql8bss2j80fx";
};

nativeBuildInputs = [ pkgconfig ];
Expand All @@ -13,10 +15,10 @@ stdenv.mkDerivation rec {
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;
description = "VCD/Waveform viewer for Unix and Win32";
homepage = http://gtkwave.sourceforge.net;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice viric ];
platforms = stdenv.lib.platforms.linux;
};
}

0 comments on commit 26891c5

Please sign in to comment.