summary refs log blame commit diff
path: root/pkgs/tools/misc/yubico-piv-tool/default.nix
blob: 188b7fa6b28dae947e4dc90e711e0ed164ed82f4 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                  

                                 

                         
                                 


                                                                                  
                                                                    

    
                                    

                                                          
 
                                                                                        
 
                    
                                                                










                                                                           



                              
{ 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;
  };
}