nixpkgs/pkgs/development/python-modules/ovito/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2018-09-18 19:32:01 +02:00
{ stdenv, fetchgit
, cmake
, libav, netcdf, qscintilla, zlib, boost, git, fftw, hdf5, libssh
2018-09-18 19:32:01 +02:00
, pythonPackages
}:
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2018-09-18 19:32:01 +02:00
# compilation error in 2.9.0 https://gitlab.com/stuko/ovito/issues/40
# This is not the "released" 3.0.0 just a commit
version = "3.0.0";
pname = "ovito";
2018-09-18 19:32:01 +02:00
src = fetchgit {
url = "https://gitlab.com/stuko/ovito";
rev = "a28c28182a879d2a1b511ec56f9845306dd8a4db";
sha256 = "1vqzv3gzwf8r0g05a7fj8hdyvnzq2h3wdfck7j6n1av6rvp7hi5r";
};
buildInputs = [ cmake libav netcdf qscintilla zlib boost zlib git fftw hdf5 libssh ];
propagatedBuildInputs = with pythonPackages; [ sphinx numpy sip pyqt5 matplotlib ase ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "Scientific visualization and analysis software for atomistic simulation data";
homepage = "https://www.ovito.org";
2018-09-18 19:32:01 +02:00
license = licenses.gpl3;
maintainers = [ maintainers.costrouc ];
# ensures not built on hydra
# https://github.com/NixOS/nixpkgs/pull/46846#issuecomment-436388048
hydraPlatforms = [ ];
broken = true; # cmake unable to find Qt5Core and other dependencies
2018-09-18 19:32:01 +02:00
};
}