vtk: fix meta.broken on darwin
This commit is contained in:
parent
89c5a92949
commit
57312f14e9
|
@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {
|
||||||
version = "${majorVersion}.${minorVersion}";
|
version = "${majorVersion}.${minorVersion}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "${meta.homepage}files/release/${majorVersion}/VTK-${version}.tar.gz";
|
url = "https://www.vtk.org/files/release/${majorVersion}/VTK-${version}.tar.gz";
|
||||||
sha256 = sourceSha256;
|
sha256 = sourceSha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -94,6 +94,6 @@ in stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ];
|
maintainers = with maintainers; [ knedlsepp tfmoraes lheckemann ];
|
||||||
platforms = with platforms; unix;
|
platforms = with platforms; unix;
|
||||||
# /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope
|
# /nix/store/xxxxxxx-apple-framework-Security/Library/Frameworks/Security.framework/Headers/Authorization.h:192:7: error: variably modified 'bytes' at file scope
|
||||||
broken = if stdenv.isDarwin && (majorVersion == 7 || majorVersion == 8) then true else false;
|
broken = stdenv.isDarwin && (lib.versions.major majorVersion == "7" || lib.versions.major majorVersion == "8");
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue