Files
nixpkgs/pkgs/by-name/se/seqkit/package.nix
Michael Daniels 4b7d598de4 Reapply "Merge branch 'staging-next' into staging"
This reverts commit 4982f4c206.

The eval failure was not introduced by my merge!
2026-02-27 19:47:50 -05:00

27 lines
621 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule (finalAttrs: {
pname = "seqkit";
version = "2.13.0";
src = fetchFromGitHub {
owner = "shenwei356";
repo = "seqkit";
rev = "v${finalAttrs.version}";
sha256 = "sha256-IZhQHB96uFQGfAqCJiT4EdkDT605EHu7eSQa/i4d3hQ=";
};
vendorHash = "sha256-HDyytwFIfvDGMmcMVH0F2NAttygTUu8PS4RvKK0TzLE=";
meta = {
description = "Cross-platform and ultrafast toolkit for FASTA/Q file manipulation";
homepage = "https://github.com/shenwei356/seqkit";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bzizou ];
};
})