2021-12-13 14:34:46 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, eigen, zlib }:
|
2018-11-15 22:34:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "niftyseg";
|
|
|
|
version = "1.0";
|
2021-12-13 14:34:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KCL-BMEIS";
|
|
|
|
repo = "NiftySeg";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-FDthq1ild9XOw3E3O7Lpfn6hBF1Frhv1NxfEA8500n8=";
|
2018-11-15 22:34:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ eigen zlib ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://cmictig.cs.ucl.ac.uk/research/software/software-nifty/niftyseg";
|
2018-11-15 22:34:57 +00:00
|
|
|
description = "Software for medical image segmentation, bias field correction, and cortical thickness calculation";
|
|
|
|
maintainers = with maintainers; [ bcdarwin ];
|
2019-11-15 02:25:10 +00:00
|
|
|
platforms = platforms.unix;
|
2018-11-15 22:34:57 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|