Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
765 B
Nix
39 lines
765 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
zlib,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vcftools";
|
|
version = "0.1.17";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "vcftools";
|
|
owner = "vcftools";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-IiePgDpaL/6XOpQsOn90clB6ST7F/37sztmHrC7Ysbw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
];
|
|
buildInputs = [
|
|
zlib
|
|
perl
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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 ];
|
|
};
|
|
}
|