3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libminc/default.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, zlib, netcdf, nifticlib, hdf5 }:
2015-11-11 22:51:50 +00:00
stdenv.mkDerivation rec {
pname = "libminc";
2018-05-09 21:23:04 +01:00
name = "${pname}-2018-01-17";
2015-11-11 22:51:50 +00:00
owner = "BIC-MNI";
# current master is significantly ahead of most recent release, so use Git version:
src = fetchFromGitHub {
inherit owner;
repo = pname;
2018-05-09 21:23:04 +01:00
rev = "a9cbe1353eae9791b7d5b03af16e0f86922ce40b";
sha256 = "0mn4n3ihzcr1jw2g1vy6c8p4lkc88jwljk04argmj7k4djrgpxpa";
2015-11-11 22:51:50 +00:00
};
2018-08-08 19:48:44 +01:00
postPatch = ''
patchShebangs .
'';
2015-11-11 22:51:50 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib netcdf nifticlib hdf5 ];
2015-11-11 22:51:50 +00:00
2018-08-08 19:48:44 +01:00
cmakeFlags = [
"-DBUILD_TESTING=${if doCheck then "ON" else "OFF"}"
"-DLIBMINC_MINC1_SUPPORT=ON"
"-DLIBMINC_BUILD_SHARED_LIBS=ON"
"-DLIBMINC_USE_SYSTEM_NIFTI=ON"
];
2018-08-08 19:48:44 +01:00
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
checkPhase = ''
export LD_LIBRARY_PATH="$(pwd)" # see #22060
2018-04-10 01:29:03 +01:00
ctest -E 'ezminc_rw_test|minc_conversion' --output-on-failure
# ezminc_rw_test can't find libminc_io.so.5.2.0; minc_conversion hits netcdf compilation issue
'';
2015-11-11 22:51:50 +00:00
enableParallelBuilding = true;
2015-11-11 22:51:50 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/${owner}/${pname}";
2015-11-11 22:51:50 +00:00
description = "Medical imaging library based on HDF5";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.free;
2015-11-11 22:51:50 +00:00
};
}