nixpkgs/pkgs/by-name/ni/niftyseg/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
714 B
Nix
Raw Normal View History

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 ];
meta = with lib; {
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 ];
platforms = platforms.unix;
2018-11-15 22:34:57 +00:00
license = licenses.bsd3;
};
}