Merge pull request #226942 from flokli/web-eid-app

web-eid-app: init at 2.2.0
This commit is contained in:
Pierre Bourdon 2023-04-19 10:35:37 +02:00 committed by GitHub
commit ada5d17b3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,49 @@
{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, gtest
, pcsclite
, pkg-config
, qmake
, qttranslations
}:
mkDerivation rec {
pname = "web-eid-app";
version = "2.2.0";
src = fetchFromGitHub {
owner = "web-eid";
repo = "web-eid-app";
rev = "v${version}";
sha256 = "sha256-TOzOcPY4m7OdCfaAXyc/joIHe2O2YbyDrXiNytPMKSk=";
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;
};
}

View File

@ -13759,6 +13759,8 @@ with pkgs;
wdfs = callPackage ../tools/filesystems/wdfs { };
web-eid-app = libsForQt5.callPackage ../tools/security/web-eid-app { };
wdiff = callPackage ../tools/text/wdiff { };
wdisplays = callPackage ../tools/graphics/wdisplays { };