1{
2 lib,
3 fetchFromGitHub,
4 buildGoModule,
5}:
6
7buildGoModule rec {
8 pname = "seqkit";
9 version = "2.10.1";
10
11 src = fetchFromGitHub {
12 owner = "shenwei356";
13 repo = "seqkit";
14 rev = "v${version}";
15 sha256 = "sha256-rWmz9dPGCLY2d7aifRrz/GDiFTcc49+eB1xJLxs+Fyc=";
16 };
17
18 vendorHash = "sha256-v8aAY6MQS8jsyd7eVm5liAG5ChPELNKu4b8U/3y6bL4=";
19
20 meta = with lib; {
21 description = "Cross-platform and ultrafast toolkit for FASTA/Q file manipulation";
22 homepage = "https://github.com/shenwei356/seqkit";
23 license = licenses.mit;
24 maintainers = with maintainers; [ bzizou ];
25 };
26}