about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/c3d/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/graphics/c3d/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/graphics/c3d/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/graphics/c3d/default.nix b/nixpkgs/pkgs/applications/graphics/c3d/default.nix
new file mode 100644
index 000000000000..61efec8dc9d4
--- /dev/null
+++ b/nixpkgs/pkgs/applications/graphics/c3d/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchgit, cmake, itk4, Cocoa }:
+
+stdenv.mkDerivation {
+  pname   = "c3d";
+  version = "unstable-2019-10-22";
+
+  src = fetchgit {
+    url    = "https://github.com/pyushkevich/c3d";
+    rev    = "c04e2b84568654665c64d8843378c8bbd58ba9b0";
+    sha256 = "0lzldxvshl9q362mg76byc7s5zc9qx7mxf2wgyij5vysx8mihx3q";
+  };
+
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ itk4 ]
+    ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
+
+  meta = with stdenv.lib; {
+    homepage = "http://www.itksnap.org/c3d";
+    description = "Medical imaging processing tool";
+    maintainers = with maintainers; [ bcdarwin ];
+    platforms = platforms.unix;
+    license = licenses.gpl2;
+    broken = stdenv.isAarch64;
+    # /build/git-3453f61/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:311:10: fatal error: xmmintrin.h: No such file or directory
+  };
+}