evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / vc / vcftools / package.nix
blob644c7eb2bd37bc46624d30f441fc483fd122b4b4
1 { lib, stdenv, fetchFromGitHub, zlib, autoreconfHook, pkg-config, perl }:
3 stdenv.mkDerivation rec {
4   pname = "vcftools";
5   version = "0.1.16";
7   src = fetchFromGitHub {
8     repo = pname;
9     owner = "vcftools";
10     rev = "v${version}";
11     sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
12   };
14   nativeBuildInputs = [ pkg-config autoreconfHook ];
15   buildInputs = [ zlib perl ];
17   meta = with lib; {
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 ];
23   };