34 lines
760 B
Nix
34 lines
760 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, libyamlcpp
|
|
, git
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.20211006";
|
|
pname = "dcm2niix";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rordenlab";
|
|
repo = "dcm2niix";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fQAVOzynMdSLDfhcYWcaXkFW/mnv4zySGLVJNE7ql/c=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
buildInputs = [ libyamlcpp ];
|
|
|
|
meta = with lib; {
|
|
description = "DICOM to NIfTI converter";
|
|
longDescription = ''
|
|
dcm2niix is a designed to convert neuroimaging data from the
|
|
DICOM format to the NIfTI format.
|
|
'';
|
|
homepage = "https://www.nitrc.org/projects/dcm2nii";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.ashgillman ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|