depot/third_party/nixpkgs/pkgs/applications/science/biology/trimal/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

31 lines
784 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "trimal";
version = "1.4.1";
src = fetchFromGitHub {
repo = pname;
owner = "scapella";
rev = "v${version}";
sha256 = "0isc7s3514di4z953xq53ncjkbi650sh4q9yyw5aag1n9hqnh7k0";
};
postUnpack = ''
sourceRoot=''${sourceRoot}/source
echo Source root reset to ''${sourceRoot}
'';
installPhase = ''
mkdir -p $out/bin
cp -a trimal readal statal $out/bin
'';
meta = with lib; {
description = "A tool for the automated removal of spurious sequences or poorly aligned regions from a multiple sequence alignment";
license = licenses.gpl3;
platforms = platforms.linux;
homepage = "http://trimal.cgenomics.org";
maintainers = [ maintainers.bzizou ];
};
}