From 3190f9ed6e659021442c7a0b3ae035c6ad048657 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 17 Jun 2010 17:06:09 +0000 Subject: [PATCH] Add Visual Trace Explorer (ViTE). svn path=/nixpkgs/trunk/; revision=22311 --- .../science/misc/vite/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 ++++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/applications/science/misc/vite/default.nix diff --git a/pkgs/applications/science/misc/vite/default.nix b/pkgs/applications/science/misc/vite/default.nix new file mode 100644 index 00000000000..a340fb2080b --- /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 + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7d4ef4b7254..8cf203ee3da 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 {