about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-02 00:38:43 +0100
committerGitHub <noreply@github.com>2021-02-02 00:38:43 +0100
commitd21b1b26a174249e9d3277b5af33a075aaadb1ab (patch)
tree11d8bcab9c665af6cfd66b57c0352a95d0a9b54c /pkgs/applications/graphics
parent1755b9d929b6c588d50657e42c119ecc78382ac6 (diff)
parent6873dc234128800fb6eef89bdb10e2632bc31c23 (diff)
downloadnixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar.gz
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar.bz2
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar.lz
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar.xz
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.tar.zst
nixlib-d21b1b26a174249e9d3277b5af33a075aaadb1ab.zip
Merge pull request #111396 from twhitehead/ovito
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 ];
+  };
+}