summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-21 10:35:50 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-21 10:35:50 +0000
commit4fc8cd8d356559a5d940fbdec735906b2d1a02d1 (patch)
treeee764da9e98766cf961ef6012865487b3632aafe /pkgs/applications/science
parent1106d431fc247c8a3a0ead1b3b076dde36ee952a (diff)
Adding gtkwave, to view waves generated by ghdl.
svn path=/nixpkgs/trunk/; revision=19065
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/electronics/gtkwave/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/science/electronics/gtkwave/default.nix b/pkgs/applications/science/electronics/gtkwave/default.nix
new file mode 100644
index 000000000000..c6256103d070
--- /dev/null
+++ b/pkgs/applications/science/electronics/gtkwave/default.nix
@@ -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;
+ };
+}