{ stdenv, fetchFromGitLab, cmake , boost, netcdf, hdf5, fftwSinglePrec, muparser, botan, libav, python , qtbase, qtsvg, qttools, qscintilla }: stdenv.mkDerivation rec { version = "2.9.0"; name = "ovita-${version}"; src = fetchFromGitLab { owner = "stuko"; repo = "ovito"; rev = "v${version}"; sha256 = "0yvz0aqw0ynhv9iychk9sdq54njw3lw61cdxv8295csjzx3nyvy3"; }; buildInputs = [ cmake boost netcdf hdf5 fftwSinglePrec muparser botan libav python qtbase qtsvg qttools qscintilla ]; meta = with stdenv.lib; { description = "Scientific visualization and analysis software for atomistic and particle simulation data"; homepage = https://ovito.org; license = licenses.gpl3; }; }