Files
ccpkgs/pkgs/ovito.nix
2021-01-29 17:36:29 -05:00

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.4.0";
name = "ovita-${version}";
src = fetchFromGitLab {
owner = "stuko";
repo = "ovito";
rev = "v${version}";
sha256 = "1y3wr6yzpsl0qm7cicp2mppfszxd0fgx8hm99in9wff9qd0r16b5";
};
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;
};
}