depot/pkgs/applications/science/biology/iqtree/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

41 lines
826 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, boost
, eigen
, zlib
, llvmPackages
}:
stdenv.mkDerivation rec {
pname = "iqtree";
version = "2.3.6";
src = fetchFromGitHub {
owner = "iqtree";
repo = "iqtree2";
rev = "v${version}";
hash = "sha256-8d5zqZIevv3bnq7z7Iyo/x8i445y1RAFtRMeK8s/ieQ=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
buildInputs = [
boost
eigen
zlib
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
llvmPackages.openmp
];
meta = with lib; {
homepage = "http://www.iqtree.org/";
description = "Efficient and versatile phylogenomic software by maximum likelihood";
mainProgram = "iqtree2";
license = licenses.lgpl2;
maintainers = with maintainers; [ bzizou ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}