forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
24 lines
701 B
Nix
Executable file
24 lines
701 B
Nix
Executable file
{ 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";
|
|
};
|
|
|
|
buildInputs = [ autoreconfHook pkg-config zlib perl ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|