571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, cmake
|
|
, pkg-config
|
|
, hidapi
|
|
, libcbor
|
|
, openssl
|
|
, udev
|
|
, zlib
|
|
, withPcsclite ? true
|
|
, pcsclite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libfido2";
|
|
version = "1.15.0";
|
|
|
|
# releases on https://developers.yubico.com/libfido2/Releases/ are signed
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
|
|
hash = "sha256-q6qxMY0h0mLs5Bb7inEy+pN0vaifb6UrhqmKL1cSth4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ libcbor zlib ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ hidapi ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ udev ]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && withPcsclite) [ pcsclite ];
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
cmakeFlags = [
|
|
"-DUDEV_RULES_DIR=${placeholder "out"}/etc/udev/rules.d"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-DUSE_HIDAPI=1"
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
"-DNFC_LINUX=1"
|
|
] ++ lib.optionals (stdenv.hostPlatform.isLinux && withPcsclite) [
|
|
"-DUSE_PCSC=1"
|
|
];
|
|
|
|
# causes possible redefinition of _FORTIFY_SOURCE?
|
|
hardeningDisable = [ "fortify3" ];
|
|
|
|
meta = with 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; [ prusnak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|