2022-11-04 12:27:35 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildGoModule
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "seqkit";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "2.4.0";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "shenwei356";
|
|
|
|
repo = "seqkit";
|
|
|
|
rev = "v${version}";
|
2023-03-24 00:07:29 +00:00
|
|
|
sha256 = "sha256-v2Z94UDuXnT7eVFX+uLSxXR34eIBzRm1bHwD7gO9SVA=";
|
2022-11-04 12:27:35 +00:00
|
|
|
};
|
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
vendorHash = "sha256-dDMSwZnTWC60zvPDvUT+9T/mUUrhW0Itn87XO/+Ef2Q=";
|
2022-11-04 12:27:35 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "cross-platform and ultrafast toolkit for FASTA/Q file manipulation";
|
|
|
|
homepage = "https://github.com/shenwei356/seqkit";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ bzizou ];
|
|
|
|
};
|
|
|
|
}
|