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

web-eid-app: init at 2.2.0

authored by

Pierre Bourdon and committed by
GitHub
ada5d17b c4907d67

+51
+49
pkgs/tools/security/web-eid-app/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , cmake 5 + , gtest 6 + , pcsclite 7 + , pkg-config 8 + , qmake 9 + , qttranslations 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "web-eid-app"; 14 + version = "2.2.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "web-eid"; 18 + repo = "web-eid-app"; 19 + rev = "v${version}"; 20 + sha256 = "sha256-TOzOcPY4m7OdCfaAXyc/joIHe2O2YbyDrXiNytPMKSk="; 21 + fetchSubmodules = true; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + cmake 26 + pkg-config 27 + ]; 28 + 29 + buildInputs = [ 30 + gtest # required during build of lib/libelectronic-id/lib/libpcsc-cpp 31 + pcsclite 32 + qttranslations 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "signing and authentication operations with smart cards for the Web eID browser extension"; 37 + longDescription = '' 38 + The Web eID application performs cryptographic digital signing and 39 + authentication operations with electronic ID smart cards for the Web eID 40 + browser extension (it is the [native messaging host](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Native_messaging) 41 + for the extension). Also works standalone without the extension in command-line 42 + mode. 43 + ''; 44 + homepage = "https://github.com/web-eid/web-eid-app"; 45 + license = licenses.mit; 46 + maintainers = [ maintainers.flokli ]; 47 + platforms = platforms.linux; 48 + }; 49 + }
+2
pkgs/top-level/all-packages.nix
··· 13759 13759 13760 13760 wdfs = callPackage ../tools/filesystems/wdfs { }; 13761 13761 13762 + web-eid-app = libsForQt5.callPackage ../tools/security/web-eid-app { }; 13763 + 13762 13764 wdiff = callPackage ../tools/text/wdiff { }; 13763 13765 13764 13766 wdisplays = callPackage ../tools/graphics/wdisplays { };