ants 2.4.2 -> 2.4.3 https://github.com/ANTsX/ANTs/releases attrpath: ants Checking auto update branch... No auto update branch exists Old version 2.4.2" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub, cmake, makeWrapper, itk, vtk_8, Cocoa }: stdenv.mkDerivation rec { pname = "ANTs"; version = "2.4.3"; src = fetchFromGitHub { owner = "ANTsX"; repo = "ANTs"; rev = "v${version}"; sha256 = "sha256-S4HYhsqof27UXEYjKvbod8N7PkZDmwLdwcEAvJD0W5g="; }; nativeBuildInputs = [ cmake makeWrapper ]; buildInputs = [ itk vtk_8 ] ++ lib.optionals stdenv.isDarwin [ Cocoa ]; cmakeFlags = [ "-DANTS_SUPERBUILD=FALSE" "-DUSE_VTK=TRUE" ]; postInstall = '' for file in $out/bin/*; do wrapProgram $file --set ANTSPATH "$out/bin" done ''; meta = with lib; { homepage = "https://github.com/ANTsX/ANTs"; description = "Advanced normalization toolkit for medical image registration and other processing"; maintainers = with maintainers; [ bcdarwin ]; platforms = platforms.unix; license = licenses.bsd3; }; }