3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/yubioath-desktop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.5 KiB
Nix
Raw Normal View History

2022-04-07 00:35:00 +01:00
{ lib
, stdenv
, fetchurl
, mkDerivation
, qmake
, qtbase
, qtquickcontrols2
, qtgraphicaleffects
, qtmultimedia
, python3
, pyotherside
, pcsclite
, yubikey-personalization
, yubikey-manager
, makeWrapper
}:
mkDerivation rec {
2019-01-17 21:18:09 +00:00
pname = "yubioath-desktop";
2022-04-07 00:35:00 +01:00
version = "5.1.0";
2019-01-17 21:18:09 +00:00
src = fetchurl {
url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz";
2022-04-07 00:35:00 +01:00
hash = "sha256-Lm9F4eaG9T5brAV7XDAkoj0WClmXEYIhuUzh2rk0oc0=";
2019-01-17 21:18:09 +00:00
};
2019-01-17 21:18:09 +00:00
doCheck = false;
2022-04-07 00:35:00 +01:00
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects qtmultimedia python3 ];
2019-01-17 21:18:09 +00:00
nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ];
2019-01-17 21:18:09 +00:00
postPatch = ''
2022-04-07 00:35:00 +01:00
substituteInPlace QZXing/QZXing-components.pri \
--replace 'target.path = $$PREFIX/lib' 'target.path = $$PREFIX/bin'
2019-01-17 21:18:09 +00:00
'';
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}" \
2019-01-17 21:18:09 +00:00
--prefix LD_PRELOAD : "${yubikey-personalization}/lib/libykpers-1.so" \
2021-01-15 05:42:41 +00:00
--prefix LD_LIBRARY_PATH : "${lib.getLib pcsclite}/lib:${yubikey-personalization}/lib"
mkdir -p $out/share/applications
2020-04-15 15:13:43 +01:00
cp resources/com.yubico.yubioath.desktop \
$out/share/applications/com.yubico.yubioath.desktop
mkdir -p $out/share/yubioath/icons
2020-04-15 15:13:43 +01:00
cp resources/icons/*.{icns,ico,png,svg} $out/share/yubioath/icons
substituteInPlace $out/share/applications/com.yubico.yubioath.desktop \
2019-01-17 21:18:09 +00:00
--replace 'Exec=yubioath-desktop' "Exec=$out/bin/yubioath-desktop" \
2021-04-16 20:45:43 +01:00
--replace 'Icon=com.yubico.yubioath' "Icon=$out/share/yubioath/icons/com.yubico.yubioath.png"
2019-01-17 21:18:09 +00:00
'';
meta = with lib; {
2020-02-27 06:27:04 +00:00
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.
'';
2020-02-27 06:27:04 +00:00
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";
2021-01-15 05:42:41 +00:00
license = lib.licenses.bsd2;
2020-02-27 06:27:04 +00:00
maintainers = with maintainers; [ mic92 risson ];
2019-01-17 21:18:09 +00:00
};
}