mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
vcftools: init at 0.1.15 (#31339)
This commit is contained in:
parent
7ce825d6ab
commit
ef0486b1f9
24
pkgs/applications/science/biology/vcftools/default.nix
Executable file
24
pkgs/applications/science/biology/vcftools/default.nix
Executable file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchFromGitHub, htslib, zlib, autoreconfHook, pkgconfig, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "vcftools";
|
||||
version = "0.1.15";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = pname;
|
||||
owner = "vcftools";
|
||||
rev = "v${version}";
|
||||
sha256 = "15yxr4kidqb42gkbd6rjra6b07wpl6rgivlh9q73yavh5myafqk4";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4860,6 +4860,8 @@ with pkgs;
|
||||
|
||||
vboot_reference = callPackage ../tools/system/vboot_reference { };
|
||||
|
||||
vcftools = callPackage ../applications/science/biology/vcftools { };
|
||||
|
||||
vcsh = callPackage ../applications/version-management/vcsh {
|
||||
inherit (perlPackages) ShellCommand TestMost;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user