From 3190f9ed6e659021442c7a0b3ae035c6ad048657 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 17 Jun 2010 17:06:09 +0000 Subject: Add Visual Trace Explorer (ViTE). svn path=/nixpkgs/trunk/; revision=22311 --- pkgs/applications/science/misc/vite/default.nix | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/applications/science/misc/vite/default.nix (limited to 'pkgs/applications/science/misc') diff --git a/pkgs/applications/science/misc/vite/default.nix b/pkgs/applications/science/misc/vite/default.nix new file mode 100644 index 000000000000..a340fb2080b3 --- /dev/null +++ b/pkgs/applications/science/misc/vite/default.nix @@ -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 + }; +} -- cgit 1.4.1