2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, zlib, autoreconfHook, pkg-config, perl }:
|
2017-11-16 07:52:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vcftools";
|
2018-08-08 08:48:04 +01:00
|
|
|
version = "0.1.16";
|
2017-11-16 07:52:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = pname;
|
|
|
|
owner = "vcftools";
|
|
|
|
rev = "v${version}";
|
2018-08-08 08:48:04 +01:00
|
|
|
sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
|
2017-11-16 07:52:56 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
buildInputs = [ autoreconfHook pkg-config zlib perl ];
|
2017-11-16 07:52:56 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-16 07:52:56 +00:00
|
|
|
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;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://vcftools.github.io/index.html";
|
2017-11-16 07:52:56 +00:00
|
|
|
maintainers = [ maintainers.rybern ];
|
|
|
|
};
|
|
|
|
}
|