ovito: 2.9.0 -> 3.3.5 (older openssl depedency may be insecure)

This commit is contained in:
Tyson Whitehead
2021-01-26 19:28:04 -05:00
parent eed2202981
commit ecb268b423
3 changed files with 5 additions and 32 deletions

33
pkgs/ovito.nix Normal file
View File

@@ -0,0 +1,33 @@
{ stdenv, fetchFromGitLab, cmake
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, libav, python
, qtbase, qtsvg, qttools, qscintilla }:
stdenv.mkDerivation rec {
version = "3.3.5";
name = "ovita-${version}";
src = fetchFromGitLab {
owner = "stuko";
repo = "ovito";
rev = "v${version}";
sha256 = "016kc5qh1jg8xryjhizjx67pkdpirgnfwi2i92glclqimln6vnns";
};
buildInputs = [
cmake
boost
netcdf hdf5
fftwSinglePrec
muparser
openssl
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;
};
}