Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gtest,
|
|
pcsclite,
|
|
pkg-config,
|
|
qttools,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "web-eid-app";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "web-eid";
|
|
repo = "web-eid-app";
|
|
rev = "v${version}";
|
|
hash = "sha256-UqHT85zuoT/ISFP2qgG2J1518eGEvm5L96ntZ/lx9BE=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qttools
|
|
];
|
|
|
|
buildInputs = [
|
|
gtest # required during build of lib/libelectronic-id/lib/libpcsc-cpp
|
|
pcsclite
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Signing and authentication operations with smart cards for the Web eID browser extension";
|
|
mainProgram = "web-eid";
|
|
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;
|
|
};
|
|
}
|