3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/science/biology/elastix/default.nix

24 lines
612 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, itk, python }:
2017-05-23 23:12:23 +01:00
stdenv.mkDerivation rec {
2018-04-10 18:34:29 +01:00
pname = "elastix";
version = "5.0.0";
2017-05-23 23:12:23 +01:00
src = fetchFromGitHub {
owner = "SuperElastix";
repo = pname;
rev = version;
sha256 = "1zrl7rz4lwsx88b2shnl985f3a97lmp4ksbd437h9y0hfjq8l0lj";
2017-05-23 23:12:23 +01:00
};
nativeBuildInputs = [ cmake python ];
buildInputs = [ itk ];
meta = with stdenv.lib; {
homepage = "http://elastix.isi.uu.nl/";
2017-05-23 23:12:23 +01:00
description = "Image registration toolkit based on ITK";
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.linux;
2017-05-23 23:12:23 +01:00
license = licenses.asl20;
};
}