summary refs log tree commit diff
path: root/pkgs/applications/science/biology/vcftools/default.nix
blob: 52957b58bc92931c284ecf2dc8cab0b86de30bfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, zlib, autoreconfHook, pkgconfig, perl }:

stdenv.mkDerivation rec {
  pname = "vcftools";
  version = "0.1.16";

  src = fetchFromGitHub {
    repo = pname;
    owner = "vcftools";
    rev = "v${version}";
    sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
  };

  buildInputs = [ autoreconfHook pkgconfig zlib perl ];

  meta = with stdenv.lib; {
    description = "A set of tools written in Perl and C++ for working with VCF files, such as those generated by the 1000 Genomes Project";
    license = licenses.lgpl3;
    platforms = platforms.linux;
    homepage = "https://vcftools.github.io/index.html";
    maintainers = [ maintainers.rybern ];
  };
}