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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
596 B
Nix
Raw Normal View History

2022-09-12 08:59:58 +00:00
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "seqkit";
2023-08-10 04:42:38 +00:00
version = "2.5.1";
2022-09-12 08:59:58 +00:00
src = fetchFromGitHub {
owner = "shenwei356";
repo = "seqkit";
rev = "v${version}";
2023-08-10 04:42:38 +00:00
sha256 = "sha256-aS8aTh8Lszob9It89shhKyqxCDjFs7zxE3VhMCHYaGM=";
2022-09-12 08:59:58 +00:00
};
2023-07-17 11:15:14 +00:00
vendorHash = "sha256-54kb9Na76+CgW61SnXu7EfO0InH/rjliNRcH2M/gxII=";
2022-09-12 08:59:58 +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 ];
};
}