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.
20 lines
526 B
Nix
20 lines
526 B
Nix
{ stdenv, fetchurl, cmake, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "resolv_wrapper-1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://samba/cwrap/${name}.tar.gz";
|
|
sha256 = "13k76l4s0v032xyyaf19qw6p4qc81ybx1wynkz2pzjhiljazsdpa";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A wrapper for the user, group and hosts NSS API";
|
|
homepage = "https://git.samba.org/?p=uid_wrapper.git;a=summary;";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|