Files
ccpkgs/pkgs/ovito.nix

34 lines
760 B
Nix

{ 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;
};
}