9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
27 lines
651 B
Nix
27 lines
651 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "muscle";
|
|
version = "5.1.0";
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rcedgar";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-NpnJziZXga/T5OavUt3nQ5np8kJ9CFcSmwyg4m6IJsk=";
|
|
};
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
installPhase = ''
|
|
install -m755 -D Linux/muscle $out/bin/muscle
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Multiple sequence alignment with top benchmark scores scalable to thousands of sequences";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "https://www.drive5.com/muscle/";
|
|
maintainers = with maintainers; [ unode thyol ];
|
|
};
|
|
}
|