2016-07-22 12:00:11 -07:00
|
|
|
{ stdenv, fetchurl, cmake, vtk }:
|
2014-10-06 22:01:26 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-11 06:35:34 -07:00
|
|
|
version = "3.0.0";
|
2014-10-06 22:01:26 -07:00
|
|
|
name = "gdcm-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-07 00:23:16 -07:00
|
|
|
url = "mirror://sourceforge/gdcm/${name}.tar.bz2";
|
2019-05-11 06:35:34 -07:00
|
|
|
sha256 = "1rhblnl0q4bl3hmanz4ckv5kzdrzdiqp9xlcqh8df3rfrgk4d81x";
|
2014-10-06 22:01:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
|
|
preConfigure = ''
|
|
|
|
cmakeDir=$PWD
|
|
|
|
mkdir ../build
|
|
|
|
cd ../build
|
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = ''
|
|
|
|
-DGDCM_BUILD_APPLICATIONS=ON
|
|
|
|
-DGDCM_BUILD_SHARED_LIBS=ON
|
2016-07-22 12:00:11 -07:00
|
|
|
-DGDCM_USE_VTK=ON
|
2014-10-06 22:01:26 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2016-07-22 12:00:11 -07:00
|
|
|
buildInputs = [ cmake vtk ];
|
2014-10-06 22:01:26 -07:00
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
|
2018-08-20 10:27:49 -07:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "The grassroots cross-platform DICOM implementation";
|
2014-10-06 22:01:26 -07:00
|
|
|
longDescription = ''
|
|
|
|
Grassroots DICOM (GDCM) is an implementation of the DICOM standard designed to be open source so that researchers may access clinical data directly.
|
|
|
|
GDCM includes a file format definition and a network communications protocol, both of which should be extended to provide a full set of tools for a researcher or small medical imaging vendor to interface with an existing medical database.
|
|
|
|
'';
|
|
|
|
homepage = http://gdcm.sourceforge.net/;
|
2018-08-20 10:27:49 -07:00
|
|
|
license = with licenses; [ bsd3 asl20 ];
|
|
|
|
platforms = platforms.all;
|
2014-10-06 22:01:26 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|