1 { lib, stdenv, fetchFromGitHub, zlib, autoreconfHook, pkg-config, perl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
14 nativeBuildInputs = [ pkg-config autoreconfHook ];
15 buildInputs = [ zlib perl ];
18 description = "Set of tools written in Perl and C++ for working with VCF files, such as those generated by the 1000 Genomes Project";
19 license = licenses.lgpl3;
20 platforms = platforms.linux;
21 homepage = "https://vcftools.github.io/index.html";
22 maintainers = [ maintainers.rybern ];