ovito: init at 3.4.0

This commit is contained in:
Tyson Whitehead 2021-01-29 15:46:27 -05:00
parent e29bef4b9c
commit 6873dc2341
No known key found for this signature in database
GPG key ID: B22199763A27997B
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ mkDerivation, lib, fetchFromGitLab, cmake
, boost, netcdf, hdf5, fftwSinglePrec, muparser, openssl, ffmpeg, python
, qtbase, qtsvg, qttools, qscintilla }:
mkDerivation rec {
pname = "ovito";
version = "3.4.0";
src = fetchFromGitLab {
owner = "stuko";
repo = "ovito";
rev = "v${version}";
sha256 = "1y3wr6yzpsl0qm7cicp2mppfszxd0fgx8hm99in9wff9qd0r16b5";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
boost
netcdf
hdf5
fftwSinglePrec
muparser
openssl
ffmpeg
python
qtbase
qtsvg
qttools
qscintilla
];
meta = with lib; {
description = "Scientific visualization and analysis software for atomistic and particle simulation data";
homepage = "https://ovito.org";
license = with licenses; [ gpl3Only mit ];
maintainers = with maintainers; [ twhitehead ];
};
}

View file

@ -6817,6 +6817,8 @@ in
ovh-ttyrec = callPackage ../tools/misc/ovh-ttyrec { };
ovito = libsForQt5.callPackage ../applications/graphics/ovito { };
owncloud-client = libsForQt514.callPackage ../applications/networking/owncloud-client { };
oxidized = callPackage ../tools/admin/oxidized { };