summary refs log tree commit diff
path: root/pkgs/applications/science/biology/muscle/default.nix
blob: f4f6d0c46e0f3b332d16a09e04ef09f4071d6587 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib, stdenv, fetchurl }:

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; {
    description = "A multiple sequence alignment method with reduced time and space complexity";
    license     = licenses.publicDomain;
    homepage    = "https://www.drive5.com/muscle/";
    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
    platforms   = lib.platforms.linux;
  };
}