nixpkgs/pkgs/applications/science/biology/vcftools/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
726 B
Nix

{ lib, stdenv, fetchFromGitHub, zlib, autoreconfHook, pkg-config, perl }:
stdenv.mkDerivation rec {
pname = "vcftools";
version = "0.1.16";
src = fetchFromGitHub {
repo = pname;
owner = "vcftools";
rev = "v${version}";
sha256 = "0msb09d2cnm8rlpg8bsc1lhjddvp3kf3i9dsj1qs4qgsdlzhxkyx";
};
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 ];
};
}