4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig, openssl, check, pcsclite, PCSC
|
|
, withApplePCSC ? stdenv.isDarwin
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "yubico-piv-tool-2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/yubico-piv-tool/Releases/${name}.tar.gz";
|
|
sha256 = "124lhlim05gw32ydjh1yawqbnx6wdllz1ir9j00j09wji3m11rfs";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ openssl check ]
|
|
++ (if withApplePCSC then [ PCSC ] else [ pcsclite ]);
|
|
|
|
configureFlags = [ "--with-backend=${if withApplePCSC then "macscard" else "pcsc"}" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://developers.yubico.com/yubico-piv-tool/";
|
|
description = ''
|
|
Used for interacting with the Privilege and Identification Card (PIV)
|
|
application on a YubiKey
|
|
'';
|
|
longDescription = ''
|
|
The Yubico PIV tool is used for interacting with the Privilege and
|
|
Identification Card (PIV) application on a YubiKey.
|
|
With it you may generate keys on the device, importing keys and
|
|
certificates, and create certificate requests, and other operations.
|
|
A shared library and a command-line tool is included.
|
|
'';
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|