forked from mirrors/nixpkgs
niftyseg: init at 1.0.0
This commit is contained in:
parent
6aa3deeb50
commit
cb6d819b93
24
pkgs/applications/science/biology/niftyseg/default.nix
Normal file
24
pkgs/applications/science/biology/niftyseg/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, lib, fetchurl, cmake, eigen, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "niftyseg";
|
||||
version = "1.0";
|
||||
name = "${pname}-${version}";
|
||||
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.linux;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
|
||||
}
|
|
@ -21196,6 +21196,8 @@ with pkgs;
|
|||
|
||||
niftyreg = callPackage ../applications/science/biology/niftyreg { };
|
||||
|
||||
niftyseg = callPackage ../applications/science/biology/niftyseg { };
|
||||
|
||||
paml = callPackage ../applications/science/biology/paml { };
|
||||
|
||||
picard-tools = callPackage ../applications/science/biology/picard-tools { };
|
||||
|
|
Loading…
Reference in a new issue