2023-04-18 22:43:14 +02:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, gtest
|
|
|
|
, pcsclite
|
|
|
|
, pkg-config
|
|
|
|
, qttranslations
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "web-eid-app";
|
2023-05-06 10:58:09 +02:00
|
|
|
version = "2.3.1";
|
2023-04-18 22:43:14 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "web-eid";
|
|
|
|
repo = "web-eid-app";
|
|
|
|
rev = "v${version}";
|
2023-05-06 10:58:09 +02:00
|
|
|
sha256 = "sha256-X6/vfCDEGXFn05DUSyy7koGVxUAPJ0lv8dnTaoansKk=";
|
2023-04-18 22:43:14 +02:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtest # required during build of lib/libelectronic-id/lib/libpcsc-cpp
|
|
|
|
pcsclite
|
|
|
|
qttranslations
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "signing and authentication operations with smart cards for the Web eID browser extension";
|
|
|
|
longDescription = ''
|
|
|
|
The Web eID application performs cryptographic digital signing and
|
|
|
|
authentication operations with electronic ID smart cards for the Web eID
|
|
|
|
browser extension (it is the [native messaging host](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging)
|
|
|
|
for the extension). Also works standalone without the extension in command-line
|
|
|
|
mode.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/web-eid/web-eid-app";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.flokli ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|