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

36 lines
954 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-01-27 16:14:39 +00:00
stdenv.mkDerivation rec {
_name = "muscle";
name = "${_name}-${version}";
version = "3.8.31";
src = fetchurl {
url = "https://www.drive5.com/muscle/downloads${version}/${_name}${version}_src.tar.gz";
sha256 = "1b89z0x7h098g99g00nqadgjnb2r5wpi9s11b7ddffqkh9m9dia3";
};
patches = [
./muscle-3.8.31-no-static.patch
];
preBuild = ''
cd ./src/
patchShebangs mk
'';
installPhase = ''
install -vD muscle $out/bin/muscle
'';
meta = with lib; {
2018-01-27 16:14:39 +00:00
description = "A multiple sequence alignment method with reduced time and space complexity";
license = licenses.publicDomain;
homepage = "https://www.drive5.com/muscle/";
2018-01-27 16:14:39 +00:00
maintainers = [ maintainers.unode ];
# NOTE: Supposed to be compatible with darwin/intel & PPC but currently fails.
# Anyone with access to these platforms is welcome to give it a try
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
2018-01-27 16:14:39 +00:00
};
}