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.
41 lines
957 B
Nix
41 lines
957 B
Nix
{ stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, cmake
|
|
, pkg-config
|
|
, hidapi
|
|
, libcbor
|
|
, openssl
|
|
, udev
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfido2";
|
|
version = "1.5.0";
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
|
|
sha256 = "08iizxq3w8mpkwfrfpl59csffc20yz8x398bl3kf23rrr4izk42r";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ hidapi libcbor openssl ]
|
|
++ stdenv.lib.optionals stdenv.isLinux [ udev ];
|
|
|
|
cmakeFlags = [
|
|
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
|
"-DUSE_HIDAPI=1"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''
|
|
Provides library functionality for FIDO 2.0, including communication with a device over USB.
|
|
'';
|
|
homepage = "https://github.com/Yubico/libfido2";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ dtzWill prusnak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|