about summary refs log tree commit diff
path: root/pkgs/applications/graphics/c3d/default.nix
blob: 4e864d953dfde3488ebc44de523fbfa17933f092 (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
{ stdenv, fetchgit, cmake, itk, Cocoa }:

stdenv.mkDerivation rec {
  pname   = "c3d";
  version = "2018-10-04";

  src = fetchgit {
    url = "https://git.code.sf.net/p/c3d/git";
    rev = "351929a582b2ef68fb9902df0b11d38f44a0ccd0";
    sha256 = "0mpv4yl6hdnxgvnwrmd182h64n3ppp30ldzm0jz6jglk0nvpzq9w";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ itk ]
    ++ 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 = true;
  };
}