about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorTyson Whitehead <twhitehead@gmail.com>2021-01-29 15:46:27 -0500
committerTyson Whitehead <twhitehead@gmail.com>2021-02-01 11:43:16 -0500
commit6873dc234128800fb6eef89bdb10e2632bc31c23 (patch)
treee3e7db7018c27ad3343b46c18076fab59261133e /pkgs/applications/graphics
parente29bef4b9c817f21276e7b3ed0d3a34f64fdbc78 (diff)
downloadnixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar.gz
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar.bz2
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar.lz
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar.xz
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.tar.zst
nixlib-6873dc234128800fb6eef89bdb10e2632bc31c23.zip
ovito: init at 3.4.0
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/ovito/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ovito/default.nix b/pkgs/applications/graphics/ovito/default.nix
new file mode 100644
index 000000000000..f0dc5f2b363e
--- /dev/null
+++ b/pkgs/applications/graphics/ovito/default.nix
@@ -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 ];
+  };
+}