nixpkgs/pkgs/applications/graphics/c3d/default.nix

28 lines
860 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, itk4, Cocoa }:
2017-03-09 23:00:30 +01:00
stdenv.mkDerivation rec {
2017-09-08 22:45:08 +02:00
pname = "c3d";
version = "unstable-2020-10-05";
2017-03-09 23:00:30 +01:00
src = fetchFromGitHub {
owner = "pyushkevich";
repo = pname;
rev = "0a87e3972ea403babbe2d05ec6d50855e7c06465";
sha256 = "0wsmkifqrcfy13fnwvinmnq1m0lkqmpyg7bgbwnb37mbrlbq06wf";
2017-03-09 23:00:30 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ itk4 ]
2017-09-08 22:45:08 +02:00
++ stdenv.lib.optional stdenv.isDarwin Cocoa;
2017-03-09 23:00:30 +01:00
meta = with stdenv.lib; {
homepage = "https://github.com/pyushkevich/c3d";
2017-03-09 23:00:30 +01:00
description = "Medical imaging processing tool";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.gpl3;
2020-02-13 20:23:23 +01:00
broken = stdenv.isAarch64;
# /build/git-3453f61/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:311:10: fatal error: xmmintrin.h: No such file or directory
2017-03-09 23:00:30 +01:00
};
}