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