mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
66 lines
2.4 KiB
Nix
66 lines
2.4 KiB
Nix
{ lib, stdenv, fetchurl, mkDerivation
|
|
, qmake, qtbase, qtquickcontrols2, qtgraphicaleffects
|
|
, python3, pyotherside
|
|
, pcsclite, yubikey-personalization
|
|
, yubikey-manager, makeWrapper }:
|
|
|
|
mkDerivation rec {
|
|
pname = "yubioath-desktop";
|
|
version = "5.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz";
|
|
sha256 = "05xs6xh9pi50h0668arirj0gnz11adpixgsdkds072077gasdm0g";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ stdenv qtbase qtquickcontrols2 qtgraphicaleffects python3 ];
|
|
|
|
nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace deployment.pri \
|
|
--replace '/usr/bin' "$out/bin"
|
|
'';
|
|
|
|
pythonPath = [ yubikey-manager ];
|
|
|
|
# Need LD_PRELOAD for libykpers as the Nix cpython disables ctypes.cdll.LoadLibrary
|
|
# support that the yubicommon library uses to load libykpers
|
|
|
|
postInstall = ''
|
|
buildPythonPath "$out $pythonPath"
|
|
wrapProgram $out/bin/yubioath-desktop \
|
|
--prefix PYTHONPATH : "$program_PYTHONPATH" \
|
|
--prefix QML2_IMPORT_PATH : "${pyotherside}/${qtbase.qtQmlPrefix}" \
|
|
--prefix LD_PRELOAD : "${yubikey-personalization}/lib/libykpers-1.so" \
|
|
--prefix LD_LIBRARY_PATH : "${lib.getLib pcsclite}/lib:${yubikey-personalization}/lib"
|
|
|
|
mkdir -p $out/share/applications
|
|
cp resources/com.yubico.yubioath.desktop \
|
|
$out/share/applications/com.yubico.yubioath.desktop
|
|
mkdir -p $out/share/yubioath/icons
|
|
cp resources/icons/*.{icns,ico,png,svg} $out/share/yubioath/icons
|
|
substituteInPlace $out/share/applications/com.yubico.yubioath.desktop \
|
|
--replace 'Exec=yubioath-desktop' "Exec=$out/bin/yubioath-desktop" \
|
|
--replace 'Icon=com.yubico.yubioath' "Icon=$out/share/yubioath/icons/com.yubico.yubioath.png"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Yubico Authenticator";
|
|
longDescription = ''
|
|
Application for generating Open Authentication (OATH) time-based TOTP and
|
|
event-based HOTP one-time password codes, with the help of a YubiKey that
|
|
protects the shared secrets.
|
|
'';
|
|
|
|
homepage = "https://developers.yubico.com/yubioath-desktop";
|
|
downloadPage = "https://developers.yubico.com/yubioath-desktop/Releases/";
|
|
changelog = "https://developers.yubico.com/yubioath-desktop/Release_Notes.html";
|
|
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with maintainers; [ mic92 risson ];
|
|
};
|
|
}
|