iqtree: init at 2.2.0.4

This commit is contained in:
Bruno Bzeznik 2022-05-30 10:53:40 +02:00
parent f6facfe59d
commit c15d568d0b
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, boost
, eigen
, zlib
}:
stdenv.mkDerivation rec {
pname = "iqtree";
version = "2.2.0.4";
src = fetchFromGitHub {
owner = "iqtree";
repo = "iqtree2";
rev = "v${version}";
sha256 = "sha256:0ickw1ldpvv2m66yzbvqfhn8k07qdkhbjrlqjs6vcf3s42j5c6pq";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost eigen zlib ];
meta = with lib; {
homepage = "http://www.iqtree.org/";
description = "Efficient and versatile phylogenomic software by maximum likelihood";
license = licenses.lgpl2;
maintainers = with maintainers; [ bzizou ];
};
}

View file

@ -32805,6 +32805,8 @@ with pkgs;
inormalize = callPackage ../applications/science/biology/inormalize { };
iqtree = callPackage ../applications/science/biology/iqtree { };
itsx = callPackage ../applications/science/biology/itsx { };
iv = callPackage ../applications/science/biology/iv {