Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
lib,
|
|
cmake,
|
|
qtbase,
|
|
qttools,
|
|
qtcharts,
|
|
libGLU,
|
|
libGL,
|
|
glm,
|
|
glew,
|
|
wrapQtAppsHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "vite";
|
|
version = "unstable-2022-05-17";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.inria.fr";
|
|
owner = "solverstack";
|
|
repo = "vite";
|
|
rev = "6d497cc519fac623e595bd174e392939c4de845c";
|
|
hash = "sha256-Yf2jYALZplIXzVtd/sg6gzEYrZ+oU0zLG1ETd/hiTi0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
buildInputs = [
|
|
qtbase
|
|
qtcharts
|
|
libGLU
|
|
libGL
|
|
glm
|
|
glew
|
|
];
|
|
|
|
meta = {
|
|
description = "Visual Trace Explorer (ViTE), a tool to visualize execution traces";
|
|
mainProgram = "vite";
|
|
|
|
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 = lib.licenses.cecill20;
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|