iqtree 2.2.0.4 -> 2.2.2.4 https://repology.org/project/iqtree/versions attrpath: iqtree Checking auto update branch... No auto update branch exists Old version 2.2.0.4" 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.4"; src = fetchFromGitHub { owner = "iqtree"; repo = "iqtree2"; rev = "v${version}"; hash = "sha256-5NF0Ej3M19Vd08xfmOHRhZkM1YGQ/ZlFj0HsSw1sw1w="; 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" ]; }; }