nixpkgs/pkgs/applications/science/biology/dcm2niix/default.nix

35 lines
805 B
Nix
Raw Normal View History

2018-01-15 06:19:20 +01:00
{ stdenv
, fetchFromGitHub
, cmake
, libyamlcpp
2019-06-18 22:11:32 +02:00
, git
2018-01-15 06:19:20 +01:00
}:
2018-01-15 07:53:28 +01:00
stdenv.mkDerivation rec {
2020-04-01 12:35:45 +02:00
version = "1.0.20200331";
pname = "dcm2niix";
2018-01-15 06:19:20 +01:00
src = fetchFromGitHub {
owner = "rordenlab";
repo = "dcm2niix";
2018-01-15 07:53:28 +01:00
rev = "v${version}";
2020-04-01 12:35:45 +02:00
sha256 = "1cncfwhyhmg18n970lkn6yvp0i74ajznsl8dqz00asqfzmg681n1";
2018-01-15 06:19:20 +01:00
};
enableParallelBuilding = true;
2019-06-18 22:11:32 +02:00
nativeBuildInputs = [ cmake git ];
2018-01-15 07:53:28 +01:00
buildInputs = [ libyamlcpp ];
2018-01-15 06:19:20 +01:00
2018-01-15 07:53:28 +01:00
meta = with stdenv.lib; {
2018-01-15 06:19:20 +01:00
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";
2018-01-15 07:53:28 +01:00
license = licenses.bsd3;
maintainers = [ maintainers.ashgillman ];
platforms = platforms.all;
};
2018-01-15 06:19:20 +01:00
}