about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/biology/niftyseg/default.nix
blob: 0fd658b0addcb55f69748ee57ac3e23ca4d2c115 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, cmake, eigen, zlib }:

stdenv.mkDerivation rec {
  pname   = "niftyseg";
  version = "1.0";

  src = fetchFromGitHub {
    owner = "KCL-BMEIS";
    repo = "NiftySeg";
    rev = "v${version}";
    sha256 = "sha256-FDthq1ild9XOw3E3O7Lpfn6hBF1Frhv1NxfEA8500n8=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ eigen zlib ];

  meta = with 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;
  };

}