mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
24 lines
610 B
Nix
24 lines
610 B
Nix
{ stdenv, fetchFromGitHub, cmake, itk, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elastix";
|
|
version = "5.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SuperElastix";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1zrl7rz4lwsx88b2shnl985f3a97lmp4ksbd437h9y0hfjq8l0lj";
|
|
};
|
|
nativeBuildInputs = [ cmake python ];
|
|
buildInputs = [ itk ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://elastix.isi.uu.nl/;
|
|
description = "Image registration toolkit based on ITK";
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
platforms = platforms.linux;
|
|
license = licenses.asl20;
|
|
};
|
|
}
|