nixpkgs/pkgs/tools/security/nitrokey-app/default.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, bash-completion, cmake, fetchFromGitHub, hidapi, libusb1, pkg-config
, qtbase, qttranslations, qtsvg, wrapQtAppsHook }:
stdenv.mkDerivation rec {
pname = "nitrokey-app";
version = "1.4.2";
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "nitrokey-app";
2018-05-28 12:59:57 +00:00
rev = "v${version}";
sha256 = "1k0w921hfrya4q2r7bqn7kgmwvwb7c15k9ymlbnksmfc9yyjyfcv";
fetchSubmodules = true;
};
buildInputs = [
2017-10-08 17:17:52 +00:00
bash-completion
hidapi
libusb1
2018-07-15 19:14:19 +00:00
qtbase
qttranslations
qtsvg
];
nativeBuildInputs = [
cmake
2021-01-17 03:51:22 +00:00
pkg-config
wrapQtAppsHook
];
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
2017-05-24 21:58:04 +00:00
meta = with lib; {
description = "Provides extra functionality for the Nitrokey Pro and Storage";
longDescription = ''
The nitrokey-app provides a QT system tray widget with wich you can
access the extra functionality of a Nitrokey Storage or Nitrokey Pro.
See https://www.nitrokey.com/ for more information.
'';
homepage = "https://github.com/Nitrokey/nitrokey-app";
repositories.git = "https://github.com/Nitrokey/nitrokey-app.git";
license = licenses.gpl3;
2017-05-24 21:58:04 +00:00
maintainers = with maintainers; [ kaiha fpletz ];
};
}