summary refs log blame commit diff
path: root/pkgs/development/libraries/libminc/default.nix
blob: 217ce20c6cfba6392f644ec6a372a935be673708 (plain) (tree)


























                                                                               
{ stdenv, fetchurl, cmake, zlib, netcdf, hdf5 }:

stdenv.mkDerivation rec {
  _name = "libminc";
  name  = "${_name}-2.3.00";

  src = fetchurl {
    url = "https://github.com/BIC-MNI/${_name}/archive/${_name}-2-3-00.tar.gz";
    sha256 = "04ngqx4wkssxs9qqcgq2bvfs1cldcycmpcx587wy3b3m6lwf004c";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ zlib netcdf hdf5 ];

  cmakeFlags = [ "-DBUILD_TESTING=${if doCheck then "ON" else "OFF"}"
                 "-DLIBMINC_MINC1_SUPPORT=ON" ];

  checkPhase = "ctest";
  doCheck = true;

  meta = with stdenv.lib; {
    homepage = https://github.com/BIC-MNI/libminc;
    description = "Medical imaging library based on HDF5";
    maintainers = with maintainers; [ bcdarwin ];
    platforms = platforms.unix;
  };
}