lol

vcftools: init at 0.1.15 (#31339)

authored by

rybern and committed by
Tuomas Tynkkynen
ef0486b1 7ce825d6

+26
+24
pkgs/applications/science/biology/vcftools/default.nix
··· 1 + { stdenv, fetchFromGitHub, htslib, zlib, autoreconfHook, pkgconfig, perl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "${pname}-${version}"; 5 + pname = "vcftools"; 6 + version = "0.1.15"; 7 + 8 + src = fetchFromGitHub { 9 + repo = pname; 10 + owner = "vcftools"; 11 + rev = "v${version}"; 12 + sha256 = "15yxr4kidqb42gkbd6rjra6b07wpl6rgivlh9q73yavh5myafqk4"; 13 + }; 14 + 15 + buildInputs = [ autoreconfHook pkgconfig zlib perl ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A set of tools written in Perl and C++ for working with VCF files, such as those generated by the 1000 Genomes Project"; 19 + license = licenses.lgpl3; 20 + platforms = platforms.linux; 21 + homepage = https://vcftools.github.io/index.html; 22 + maintainers = [ maintainers.rybern ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 4860 4860 4861 4861 vboot_reference = callPackage ../tools/system/vboot_reference { }; 4862 4862 4863 + vcftools = callPackage ../applications/science/biology/vcftools { }; 4864 + 4863 4865 vcsh = callPackage ../applications/version-management/vcsh { 4864 4866 inherit (perlPackages) ShellCommand TestMost; 4865 4867 };