mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
24 lines
743 B
Nix
24 lines
743 B
Nix
{ stdenv, fetchurl, cmake, eigen, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "niftyseg";
|
|
version = "1.0";
|
|
src = fetchurl {
|
|
url = "https://github.com/KCL-BMEIS/NiftySeg/archive/v${version}.tar.gz";
|
|
sha256 = "11q6yldsxp3k6gfp94c0xhcan2y3finzv8lzizmrc79yps3wjkn0";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ eigen zlib ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://cmictig.cs.ucl.ac.uk/research/software/software-nifty/niftyseg";
|
|
description = "Software for medical image segmentation, bias field correction, and cortical thickness calculation";
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
platforms = platforms.unix;
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|