forked from mirrors/nixpkgs
Adding gtkwave, to view waves generated by ghdl.
svn path=/nixpkgs/trunk/; revision=19065
This commit is contained in:
parent
1106d431fc
commit
4fc8cd8d35
19
pkgs/applications/science/electronics/gtkwave/default.nix
Normal file
19
pkgs/applications/science/electronics/gtkwave/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue