2021-06-22 09:18:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, enableVTK ? true
|
2023-01-24 16:48:56 +00:00
|
|
|
, vtk_8
|
2021-06-22 09:18:18 +00:00
|
|
|
, ApplicationServices
|
|
|
|
, Cocoa
|
|
|
|
, enablePython ? false
|
2021-07-27 13:36:55 +00:00
|
|
|
, python ? null
|
2021-06-22 09:18:18 +00:00
|
|
|
, swig
|
|
|
|
}:
|
2014-10-07 05:01:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "gdcm";
|
2023-01-31 13:32:34 +00:00
|
|
|
version = "3.0.21";
|
2014-10-07 05:01:26 +00:00
|
|
|
|
2021-06-22 09:18:18 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "malaterre";
|
|
|
|
repo = "GDCM";
|
|
|
|
rev = "v${version}";
|
2023-01-31 13:32:34 +00:00
|
|
|
sha256 = "sha256-BmUJCqCGt+BvVpLG4bzCH4lsqmhWHU0gbOIU2CCIMGU=";
|
2014-10-07 05:01:26 +00:00
|
|
|
};
|
|
|
|
|
2019-10-28 09:17:49 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DGDCM_BUILD_APPLICATIONS=ON"
|
|
|
|
"-DGDCM_BUILD_SHARED_LIBS=ON"
|
2021-06-22 09:18:18 +00:00
|
|
|
] ++ lib.optionals enableVTK [
|
2019-10-28 09:17:49 +00:00
|
|
|
"-DGDCM_USE_VTK=ON"
|
2021-06-22 09:18:18 +00:00
|
|
|
] ++ lib.optionals enablePython [
|
2020-07-05 20:52:33 +00:00
|
|
|
"-DGDCM_WRAP_PYTHON:BOOL=ON"
|
|
|
|
"-DGDCM_INSTALL_PYTHONMODULE_DIR=${placeholder "out"}/${python.sitePackages}"
|
2019-10-28 09:17:49 +00:00
|
|
|
];
|
2014-10-07 05:01:26 +00:00
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-06-22 09:18:18 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optionals enableVTK [
|
2023-01-24 16:48:56 +00:00
|
|
|
vtk_8
|
2021-06-22 09:18:18 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
ApplicationServices
|
|
|
|
Cocoa
|
|
|
|
] ++ lib.optionals enablePython [ swig python ];
|
2014-10-07 05:01:26 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "The grassroots cross-platform DICOM implementation";
|
2014-10-07 05:01:26 +00: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.
|
|
|
|
'';
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://gdcm.sourceforge.net/";
|
2018-08-20 17:27:49 +00:00
|
|
|
license = with licenses; [ bsd3 asl20 ];
|
2021-06-22 09:18:18 +00:00
|
|
|
maintainers = with maintainers; [ tfmoraes ];
|
2014-10-07 05:01:26 +00:00
|
|
|
};
|
|
|
|
}
|