fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / vc / vcftools / package.nix
blobd3b1bb1301ec0ae376052e63234192a48ed8e4fc
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   zlib,
6   autoreconfHook,
7   pkg-config,
8   perl,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "vcftools";
13   version = "0.1.16";
15   src = fetchFromGitHub {
16     repo = pname;
17     owner = "vcftools";
18     rev = "v${version}";
19     sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
20   };
22   nativeBuildInputs = [
23     pkg-config
24     autoreconfHook
25   ];
26   buildInputs = [
27     zlib
28     perl
29   ];
31   meta = with lib; {
32     description = "Set of tools written in Perl and C++ for working with VCF files, such as those generated by the 1000 Genomes Project";
33     license = licenses.lgpl3;
34     platforms = platforms.linux;
35     homepage = "https://vcftools.github.io/index.html";
36     maintainers = [ maintainers.rybern ];
37   };