587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
38 lines
943 B
Nix
38 lines
943 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, llvmPackages
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "veryfasttree";
|
|
version = "4.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "citiususc";
|
|
repo = "veryfasttree";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-Sp331VJRaYv/BTwFj3HwUcUsWjYf6YEXWjYdOzDhBBA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = lib.optional stdenv.cc.isClang llvmPackages.openmp;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -m755 -D VeryFastTree $out/bin/VeryFastTree
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Speeding up the estimation of phylogenetic trees for large alignments through parallelization and vectorization strategies";
|
|
mainProgram = "VeryFastTree";
|
|
homepage = "https://github.com/citiususc/veryfasttree";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ thyol ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|