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

40 lines
1.2 KiB
Nix
Raw Normal View History

2017-10-08 19:17:52 +02:00
{ stdenv, bash-completion, cmake, fetchgit, hidapi, libusb1, pkgconfig, qt5 }:
stdenv.mkDerivation rec {
name = "nitrokey-app";
2017-10-08 19:17:52 +02:00
version = "1.2";
2017-10-08 19:17:52 +02:00
# We use fetchgit instead of fetchFromGitHub because of necessary git submodules
src = fetchgit {
url = "https://github.com/Nitrokey/nitrokey-app.git";
rev = "refs/tags/v${version}";
2017-10-08 19:17:52 +02:00
sha256 = "0mm6vlgxlmpahmmcn4awnfpx5rx5bj8m44cywhgxlmz012x73hzi";
};
buildInputs = [
2017-10-08 19:17:52 +02:00
bash-completion
hidapi
libusb1
qt5.qtbase
qt5.qttranslations
];
nativeBuildInputs = [
cmake
pkgconfig
];
2017-10-08 19:17:52 +02:00
cmakeFlags = "-DCMAKE_BUILD_TYPE=Release";
2017-05-24 23:58:04 +02:00
meta = with stdenv.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 23:58:04 +02:00
maintainers = with maintainers; [ kaiha fpletz ];
};
}