depot/third_party/nixpkgs/pkgs/applications/science/biology/veryfasttree/default.nix
Default email a71eb02b76 Project import generated by Copybara.
GitOrigin-RevId: a115bb9bd56831941be3776c8a94005867f316a7
2022-11-27 10:42:12 +01:00

26 lines
723 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "veryfasttree";
version = "3.1.1";
src = fetchFromGitHub {
owner = "citiususc";
repo = "${name}";
rev = "v${version}";
hash = "sha256-AOzbxUnrn1qgscjdOKf4dordnSKtIg3nSVaYWK1jbuc=";
};
nativeBuildInputs = [ cmake ];
installPhase = ''
install -m755 -D VeryFastTree $out/bin/VeryFastTree
'';
meta = with lib; {
description = "Speeding up the estimation of phylogenetic trees for large alignments through parallelization and vectorization strategies";
license = licenses.gpl3Plus;
homepage = "https://github.com/citiususc/veryfasttree";
maintainers = with maintainers; [ thyol ];
};
}