Merge pull request #167613 from terlar/update-yubioath-desktop

yubioath-desktop: 5.0.5 -> 5.1.0
main
Sandro 2 years ago committed by GitHub
commit e4cf4d90f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 31
      pkgs/applications/misc/yubioath-desktop/default.nix

@ -1,27 +1,38 @@
{ lib, stdenv, fetchurl, mkDerivation { lib
, qmake, qtbase, qtquickcontrols2, qtgraphicaleffects , stdenv
, python3, pyotherside , fetchurl
, pcsclite, yubikey-personalization , mkDerivation
, yubikey-manager, makeWrapper }: , qmake
, qtbase
, qtquickcontrols2
, qtgraphicaleffects
, qtmultimedia
, python3
, pyotherside
, pcsclite
, yubikey-personalization
, yubikey-manager
, makeWrapper
}:
mkDerivation rec { mkDerivation rec {
pname = "yubioath-desktop"; pname = "yubioath-desktop";
version = "5.0.5"; version = "5.1.0";
src = fetchurl { src = fetchurl {
url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz"; url = "https://developers.yubico.com/yubioath-desktop/Releases/yubioath-desktop-${version}.tar.gz";
sha256 = "05xs6xh9pi50h0668arirj0gnz11adpixgsdkds072077gasdm0g"; hash = "sha256-Lm9F4eaG9T5brAV7XDAkoj0WClmXEYIhuUzh2rk0oc0=";
}; };
doCheck = false; doCheck = false;
buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects python3 ]; buildInputs = [ qtbase qtquickcontrols2 qtgraphicaleffects qtmultimedia python3 ];
nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ]; nativeBuildInputs = [ qmake makeWrapper python3.pkgs.wrapPython ];
postPatch = '' postPatch = ''
substituteInPlace deployment.pri \ substituteInPlace QZXing/QZXing-components.pri \
--replace '/usr/bin' "$out/bin" --replace 'target.path = $$PREFIX/lib' 'target.path = $$PREFIX/bin'
''; '';
pythonPath = [ yubikey-manager ]; pythonPath = [ yubikey-manager ];

Loading…
Cancel
Save