about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/partio
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/partio')
-rw-r--r--nixpkgs/pkgs/development/libraries/partio/default.nix63
1 files changed, 63 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/partio/default.nix b/nixpkgs/pkgs/development/libraries/partio/default.nix
new file mode 100644
index 000000000000..75817ff568f7
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/partio/default.nix
@@ -0,0 +1,63 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, unzip
+, cmake
+, freeglut
+, libGLU
+, libGL
+, zlib
+, swig
+, doxygen
+, xorg
+, python3
+, darwin
+}:
+
+stdenv.mkDerivation rec {
+  pname = "partio";
+  version = "1.17.3";
+
+  src = fetchFromGitHub {
+    owner = "wdas";
+    repo = "partio";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-wV9byR85qwOkoTyLjG0gOLC3Gc19ykwiLpDy4T/MENQ=";
+  };
+
+  outputs = [ "dev" "out" "lib" ];
+
+  nativeBuildInputs = [
+    unzip
+    cmake
+    doxygen
+  ];
+
+  buildInputs = [
+    zlib
+    swig
+    xorg.libXi
+    xorg.libXmu
+    python3
+  ] ++ lib.optionals stdenv.isDarwin [
+    darwin.apple_sdk.frameworks.Cocoa
+    darwin.apple_sdk.frameworks.GLUT
+  ] ++ lib.optionals (!stdenv.isDarwin) [
+    freeglut
+    libGLU
+    libGL
+  ];
+
+  # TODO:
+  # Sexpr support
+
+  strictDeps = true;
+
+  meta = with lib; {
+    description = "C++ (with python bindings) library for easily reading/writing/manipulating common animation particle formats such as PDB, BGEO, PTC";
+    homepage = "https://github.com/wdas/partio";
+    license = licenses.bsd3;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.guibou ];
+  };
+}