lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

htslib: 1.21 -> 1.22

authored by

R. Ryantm and committed by
Weijia Wang
e256fd4e 540bd6e1

+10 -2
+10 -2
pkgs/by-name/ht/htslib/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 + fetchpatch, 5 6 zlib, 6 7 bzip2, 7 8 xz, ··· 11 12 12 13 stdenv.mkDerivation rec { 13 14 pname = "htslib"; 14 - version = "1.21"; 15 + version = "1.22"; 15 16 16 17 src = fetchurl { 17 18 url = "https://github.com/samtools/htslib/releases/download/${version}/${pname}-${version}.tar.bz2"; 18 - sha256 = "sha256-hLUQ5zX0ljZB8m/YjIq97oH/TLYhaDEK5xZjaqwPGCM="; 19 + hash = "sha256-YlDB3yl9tHdRbmCsjfRe11plLR8lsPN/EvWxcmnq/ek="; 19 20 }; 21 + 22 + patches = [ 23 + (fetchpatch { 24 + url = "https://github.com/samtools/htslib/commit/31006e1c8edd02eb6321ed9be76b84fca5d20cb6.patch"; 25 + hash = "sha256-sbnkVmXIbs/Cn/msUUrJpJZCI2DHX5kpGSka2cccZIQ="; 26 + }) 27 + ]; 20 28 21 29 # perl is only used during the check phase. 22 30 nativeBuildInputs = [ perl ];