nixpkgs/pkgs/development/libraries/science/biology/elastix/default.nix
Matthew Bauer 2c47a4229f treewide: remove ctest usages
These are already in the generated makefiles!
2018-11-18 19:31:02 -06:00

24 lines
645 B
Nix

{ stdenv, fetchurl, cmake, itk, python }:
stdenv.mkDerivation rec {
pname = "elastix";
pversion = "4.9.0";
name = "${pname}-${pversion}";
src = fetchurl {
url = "https://github.com/SuperElastix/${pname}/archive/${pversion}.tar.gz";
sha256 = "02pbln36nq98xxfyqwlxg7b6gmigdq4fgfqr9mym1qn58aj04shg";
};
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;
};
}