tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
c3d: unstable-2020-10-05 -> unstable-2021-09-14
Ben Darwin
4 years ago
a21e52fe
25a02b0b
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
c3d
default.nix
+8
-6
pkgs/applications/graphics/c3d/default.nix
···
1
1
-
{ lib, stdenv, fetchFromGitHub, cmake, itk4, Cocoa }:
1
1
+
{ lib, stdenv, fetchFromGitHub, cmake, itk, Cocoa }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "c3d";
5
5
-
version = "unstable-2020-10-05";
5
5
+
version = "unstable-2021-09-14";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "pyushkevich";
9
9
repo = pname;
10
10
-
rev = "0a87e3972ea403babbe2d05ec6d50855e7c06465";
11
11
-
sha256 = "0wsmkifqrcfy13fnwvinmnq1m0lkqmpyg7bgbwnb37mbrlbq06wf";
10
10
+
rev = "cc06e6e2f04acd3d6faa3d8c9a66b499f02d4388";
11
11
+
sha256 = "sha256:1ql1y6694njsmdapywhppb54viyw8wdpaxxr1b3hm2rqhvwmhn52";
12
12
};
13
13
14
14
nativeBuildInputs = [ cmake ];
15
15
-
buildInputs = [ itk4 ]
15
15
+
buildInputs = [ itk ]
16
16
++ lib.optional stdenv.isDarwin Cocoa;
17
17
18
18
+
cmakeFlags = [ "-DCONVERT3D_USE_ITK_REMOTE_MODULES=OFF" ];
19
19
+
18
20
meta = with lib; {
19
21
homepage = "https://github.com/pyushkevich/c3d";
20
22
description = "Medical imaging processing tool";
···
22
24
platforms = platforms.unix;
23
25
license = licenses.gpl3;
24
26
broken = stdenv.isAarch64;
25
25
-
# /build/git-3453f61/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:311:10: fatal error: xmmintrin.h: No such file or directory
27
27
+
# /build/source/itkextras/OneDimensionalInPlaceAccumulateFilter.txx:312:10: fatal error: xmmintrin.h: No such file or directory
26
28
};
27
29
}