Add Visual Trace Explorer (ViTE).

svn path=/nixpkgs/trunk/; revision=22311
This commit is contained in:
Ludovic Courtès 2010-06-17 17:06:09 +00:00
parent 4462d3b9c7
commit 3190f9ed6e
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ fetchurl, stdenv, cmake, qt, mesa }:
stdenv.mkDerivation {
name = "vite-1.1";
src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/26321/vite_1005.tar.gz";
sha256 = "11l39809i1hjizw89x23d6m246w7a64z11bhrx7q5h0scvwd1imr";
};
buildInputs = [ cmake qt mesa ];
NIX_LDFLAGS = "-lGLU";
meta = {
description = "Visual Trace Explorer (ViTE), a tool to visualize execution traces";
longDescription =
'' ViTE is a trace explorer. It is a tool to visualize execution traces
in Pajé or OTF format for debugging and profiling parallel or
distributed applications.
'';
homepage = http://vite.gforge.inria.fr/;
license = "CeCILL-A";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}

View file

@ -9575,6 +9575,12 @@ let
qt = qt4;
};
vite = import ../applications/science/misc/vite {
inherit fetchurl cmake mesa;
qt = qt4;
stdenv = stdenv2;
};
### MISC
atari800 = import ../misc/emulators/atari800 {