3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #38595 from r-ryantm/auto-update/bcftools

bcftools: 1.7 -> 1.8
This commit is contained in:
Jörg Thalheim 2018-04-08 09:36:13 +01:00 committed by GitHub
commit 62dc989963
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,16 @@
{ stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, bash }:
{ stdenv, fetchurl, htslib, zlib, bzip2, lzma, curl, perl, python, bash }:
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "bcftools";
version = "1.7";
version = "1.8";
src = fetchurl {
url = "https://github.com/samtools/bcftools/releases/download/${version}/${name}.tar.bz2";
sha256 = "1l82sgw86l1626b7kxv3h0696lbj7317bb48rvqb1zqd3gcn6kyx";
sha256 = "1vgw2mwngq20c530zim52zvgmw1lci8rzl33pvh44xqk3xlzvjsa";
};
nativeBuildInputs = [ perl ];
buildInputs = [ htslib zlib bzip2 lzma curl ];
buildInputs = [ htslib zlib bzip2 lzma curl perl python ];
makeFlags = [
"HSTDIR=${htslib}"