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

49 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, bash-completion, cmake, fetchFromGitHub, hidapi, libusb1, pkgconfig
, qtbase, qttranslations, qtsvg, wrapQtAppsHook }:
stdenv.mkDerivation rec {
pname = "nitrokey-app";
2018-10-08 14:28:51 +02:00
version = "1.3.2";
src = fetchFromGitHub {
owner = "Nitrokey";
repo = "nitrokey-app";
2018-05-28 14:59:57 +02:00
rev = "v${version}";
2018-10-08 14:28:51 +02:00
sha256 = "193kzlz3qn9il56h78faiqkgv749hdils1nn1iw6g3wphgx5fjs2";
fetchSubmodules = true;
};
2018-07-15 21:14:19 +02:00
postPatch = ''
substituteInPlace libnitrokey/CMakeLists.txt \
--replace '/data/41-nitrokey.rules' '/libnitrokey/data/41-nitrokey.rules'
'';
buildInputs = [
2017-10-08 19:17:52 +02:00
bash-completion
hidapi
libusb1
2018-07-15 21:14:19 +02:00
qtbase
qttranslations
qtsvg
];
nativeBuildInputs = [
cmake
pkgconfig
wrapQtAppsHook
];
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 ];
};
}