iqtree 2.2.2.6 -> 2.2.2.7 https://github.com/iqtree/iqtree2/releases attrpath: iqtree Checking auto update branch... No auto update branch exists Old version 2.2.2.6" not present in master derivation file with contents: { lib , stdenv , fetchFromGitHub , cmake , boost , eigen , zlib , llvmPackages }: stdenv.mkDerivation rec { pname = "iqtree"; version = "2.2.2.7"; src = fetchFromGitHub { owner = "iqtree"; repo = "iqtree2"; rev = "v${version}"; hash = "sha256-XyjVo5TYMoB+ZOAGc4ivYqFGnEO1M7mhxXrG45TP44Y="; fetchSubmodules = true; }; nativeBuildInputs = [ cmake ]; buildInputs = [ boost eigen zlib ] ++ lib.optionals stdenv.isDarwin [ llvmPackages.openmp ]; meta = with lib; { homepage = "http://www.iqtree.org/"; description = "Efficient and versatile phylogenomic software by maximum likelihood"; license = licenses.lgpl2; maintainers = with maintainers; [ bzizou ]; platforms = [ "x86_64-linux" "x86_64-darwin" ]; }; }