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

38 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, cmake, fetchgit, hidapi, libusb1, pkgconfig, qt5 }:
stdenv.mkDerivation rec {
name = "nitrokey-app";
2017-05-24 21:58:04 +00:00
version = "1.1";
src = fetchgit {
url = "https://github.com/Nitrokey/nitrokey-app.git";
rev = "refs/tags/v${version}";
2017-05-24 21:58:04 +00:00
sha256 = "11pz1p5qgghkr5f8s2wg34zqhxk2vq465i73w1h479j88x35rdp0";
};
buildInputs = [
hidapi
libusb1
qt5.qtbase
qt5.qttranslations
];
nativeBuildInputs = [
cmake
pkgconfig
];
2016-10-22 19:02:14 +00:00
cmakeFlags = "-DHAVE_LIBAPPINDICATOR=NO";
2017-05-24 21:58:04 +00: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 21:58:04 +00:00
maintainers = with maintainers; [ kaiha fpletz ];
};
}