3
0
Fork 0
forked from mirrors/nixpkgs

Adding gtkwave, to view waves generated by ghdl.

svn path=/nixpkgs/trunk/; revision=19065
This commit is contained in:
Lluís Batlle i Rossell 2009-12-21 10:35:50 +00:00
parent 1106d431fc
commit 4fc8cd8d35
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl, gtk, gperf, pkgconfig, bzip2} :
stdenv.mkDerivation rec {
name = "gtkwave-3.2.3";
src = fetchurl {
url = "mirror://sourceforge/gtkwave/${name}.tar.gz";
sha256 = "1ym8fw6cv76gn80qzh6a5y7gikqgnz65hwy0cp6p6h18i5ghgfs0";
};
buildInputs = [ gtk gperf pkgconfig bzip2 ];
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;
};
}

View file

@ -8155,6 +8155,10 @@ let
inherit fetchurl stdenv readline;
};
gtkwave = import ../applications/science/electronics/gtkwave {
inherit fetchurl stdenv gperf pkgconfig bzip2;
inherit (gtkLibs) gtk;
};
### SCIENCE / MATH