about summary refs log tree commit diff
path: root/pkgs/applications/graphics/c3d/default.nix
blob: 425ede037593175be23a9e423b6e409e2b5fe99a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, cmake, itk4, Cocoa }:

stdenv.mkDerivation rec {
  pname   = "c3d";
  version = "unstable-2020-10-05";

  src = fetchFromGitHub {
    owner = "pyushkevich";
    repo = pname;
    rev = "0a87e3972ea403babbe2d05ec6d50855e7c06465";
    sha256 = "0wsmkifqrcfy13fnwvinmnq1m0lkqmpyg7bgbwnb37mbrlbq06wf";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ itk4 ]
    ++ stdenv.lib.optional stdenv.isDarwin Cocoa;

  meta = with stdenv.lib; {
    homepage = "https://github.com/pyushkevich/c3d";
    description = "Medical imaging processing tool";
    maintainers = with maintainers; [ bcdarwin ];
    platforms = platforms.unix;
    license = licenses.gpl3;
    broken = stdenv.isAarch64;
    # /build/git-3453f61/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:311:10: fatal error: xmmintrin.h: No such file or directory
  };
}