nixpkgs/pkgs/tools/misc/yubikey-manager-qt/default.nix

69 lines
1.6 KiB
Nix
Raw Normal View History

2021-01-27 05:44:43 +00:00
{ lib
, mkDerivation
2019-02-11 22:21:53 +00:00
, fetchurl
, pcsclite
2019-02-11 22:21:53 +00:00
, pyotherside
, python3
, qmake
, qtbase
, qtgraphicaleffects
, qtquickcontrols2
2019-02-11 22:21:53 +00:00
, yubikey-manager
, yubikey-personalization
}:
mkDerivation rec {
2019-02-11 22:21:53 +00:00
pname = "yubikey-manager-qt";
version = "1.2.2";
2019-02-11 22:21:53 +00:00
src = fetchurl {
url = "https://developers.yubico.com/${pname}/Releases/${pname}-${version}.tar.gz";
sha256 = "1jqibv7na9h2r8nxgzp40j9qpyiwx97c65krivkcqjwdjk5lrahl";
2019-02-11 22:21:53 +00:00
};
nativeBuildInputs = [
python3.pkgs.wrapPython
qmake
];
2019-02-11 22:21:53 +00:00
postPatch = ''
substituteInPlace ykman-gui/deployment.pri --replace '/usr/bin' "$out/bin"
'';
buildInputs = [
pyotherside
python3
qtbase
qtgraphicaleffects
qtquickcontrols2
];
2019-02-11 22:21:53 +00:00
pythonPath = [
(yubikey-manager.override { python3Packages = python3.pkgs; })
];
2019-02-11 22:21:53 +00:00
postInstall = ''
install -Dt $out/share/applications resources/ykman-gui.desktop
install -Dt $out/share/ykman-gui/icons resources/icons/*.{icns,ico,png,xpm}
substituteInPlace $out/share/applications/ykman-gui.desktop \
--replace 'Exec=ykman-gui' "Exec=$out/bin/ykman-gui"
'';
2019-02-11 22:21:53 +00:00
qtWrapperArgs = [
"--prefix" "LD_LIBRARY_PATH" ":" (lib.makeLibraryPath [ pcsclite yubikey-personalization ])
];
2019-02-11 22:21:53 +00:00
preFixup = ''
buildPythonPath "$pythonPath"
qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
2019-02-11 22:21:53 +00:00
'';
meta = with lib; {
description = "Cross-platform application for configuring any YubiKey over all USB interfaces";
homepage = "https://developers.yubico.com/yubikey-manager-qt/";
2019-02-11 22:21:53 +00:00
license = licenses.bsd2;
maintainers = [ maintainers.cbley ];
platforms = platforms.linux;
};
}