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

34 lines
763 B
Nix
Raw Normal View History

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