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.
25 lines
793 B
Nix
25 lines
793 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config
|
|
, asciidoc, libxslt, docbook_xsl
|
|
, pam, yubikey-personalization, libyubikey, libykclient }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yubico-pam";
|
|
version = "unstable-2019-07-01";
|
|
src = fetchFromGitHub {
|
|
owner = "Yubico";
|
|
repo = pname;
|
|
rev = "b5bd00db81e0e0e0ecced65c684080bb56ddc35b";
|
|
sha256 = "10dq8dqi3jldllj6p8r9hldx9sank9n82c44w8akxrs1vli6nj3m";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config asciidoc libxslt docbook_xsl ];
|
|
buildInputs = [ pam yubikey-personalization libyubikey libykclient ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Yubico PAM module";
|
|
homepage = "https://developers.yubico.com/yubico-pam";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
};
|
|
}
|