mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
a9551de99a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dcm2niix/versions
35 lines
803 B
Nix
35 lines
803 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, libyamlcpp
|
|
, git
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.20190902";
|
|
pname = "dcm2niix";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rordenlab";
|
|
repo = "dcm2niix";
|
|
rev = "v${version}";
|
|
sha256 = "0h8jsadgv831lqb0jhnaxm7lldirmnp5agrhgg5bcxvn860fl15b";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ cmake git ];
|
|
buildInputs = [ libyamlcpp ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "dcm2niix 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;
|
|
};
|
|
}
|