2023-03-25 15:43:39 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, qttranslations
|
|
|
|
, wrapQtAppsHook
|
|
|
|
, libnitrokey
|
|
|
|
, cppcodec
|
|
|
|
}:
|
2016-08-06 08:45:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nitrokey-app";
|
2021-01-03 12:03:19 +00:00
|
|
|
version = "1.4.2";
|
2016-08-06 08:45:23 +00:00
|
|
|
|
2018-10-08 12:23:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Nitrokey";
|
|
|
|
repo = "nitrokey-app";
|
2018-05-28 12:59:57 +00:00
|
|
|
rev = "v${version}";
|
2023-03-25 15:43:39 +00:00
|
|
|
hash = "sha256-c6EC5uuMna07xVHDRFq0UDwuSeopZTmZGZ9ZD5zaq8Y=";
|
2016-08-06 08:45:23 +00:00
|
|
|
};
|
|
|
|
|
2017-04-14 20:34:36 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
2021-01-17 03:51:22 +00:00
|
|
|
pkg-config
|
2019-07-05 15:42:08 +00:00
|
|
|
wrapQtAppsHook
|
2023-03-25 15:43:39 +00:00
|
|
|
qttranslations
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DADD_GIT_INFO=OFF"
|
|
|
|
"-DBASH_COMPLETION_PATH=share/bash-completion/completions"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libnitrokey
|
|
|
|
cppcodec
|
2017-04-14 20:34:36 +00:00
|
|
|
];
|
2017-05-24 21:58:04 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-08-06 08:45:23 +00:00
|
|
|
description = "Provides extra functionality for the Nitrokey Pro and Storage";
|
|
|
|
longDescription = ''
|
2022-01-25 14:17:09 +00:00
|
|
|
The nitrokey-app provides a QT system tray widget with which you can
|
2016-08-06 08:45:23 +00:00
|
|
|
access the extra functionality of a Nitrokey Storage or Nitrokey Pro.
|
|
|
|
See https://www.nitrokey.com/ for more information.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Nitrokey/nitrokey-app";
|
2017-04-14 20:34:36 +00:00
|
|
|
license = licenses.gpl3;
|
2023-03-27 16:44:59 +00:00
|
|
|
maintainers = with maintainers; [ kaiha panicgh ];
|
2016-08-06 08:45:23 +00:00
|
|
|
};
|
|
|
|
}
|