nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 26 lines 600 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5}: 6 7buildGoModule rec { 8 pname = "seqkit"; 9 version = "2.12.0"; 10 11 src = fetchFromGitHub { 12 owner = "shenwei356"; 13 repo = "seqkit"; 14 rev = "v${version}"; 15 sha256 = "sha256-9+eu4M58nG/tOdEW7fO8f+dMJewMjQsWfzH/KpSBDB8="; 16 }; 17 18 vendorHash = "sha256-TsL7iYZoxCGR2gl2YlNCnmssVui8TLKN8JTtLAzgvH4="; 19 20 meta = { 21 description = "Cross-platform and ultrafast toolkit for FASTA/Q file manipulation"; 22 homepage = "https://github.com/shenwei356/seqkit"; 23 license = lib.licenses.mit; 24 maintainers = with lib.maintainers; [ bzizou ]; 25 }; 26}