nixpkgs/pkgs/applications/science/biology/veryfasttree/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
720 B
Nix
Raw Normal View History

2022-11-22 19:45:25 +00:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
2023-01-28 04:20:00 +00:00
pname = "veryfasttree";
2022-11-22 19:45:25 +00:00
version = "3.1.1";
src = fetchFromGitHub {
owner = "citiususc";
2023-01-28 04:20:00 +00:00
repo = pname;
2022-11-22 19:45:25 +00:00
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 ];
};
}