2022-06-16 17:23:12 +00:00
|
|
|
{ lib, mkDerivation, fetchurl, cmake, gettext
|
2021-12-26 17:43:05 +00:00
|
|
|
, pkg-config, libdigidocpp, opensc, openldap, openssl, pcsclite, qtbase
|
|
|
|
, qttranslations, qtsvg }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
mkDerivation rec {
|
|
|
|
pname = "qdigidoc";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "4.2.11";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-26 17:43:05 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url =
|
2022-06-16 17:23:12 +00:00
|
|
|
"https://github.com/open-eid/DigiDoc4-Client/releases/download/v${version}/qdigidoc4_${version}.110-1804.tar.xz";
|
|
|
|
sha256 = "sha256-Sg6lFZeIJn3T/suDc5Z/kNqBf/sIV9c6EJJ0Nr0dwTM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
tsl = fetchurl {
|
2021-12-26 17:43:05 +00:00
|
|
|
url = "https://ec.europa.eu/tools/lotl/eu-lotl-pivot-300.xml";
|
|
|
|
sha256 = "1cikz36w9phgczcqnwk4k3mx3kk919wy2327jksmfa4cjfjq4a8d";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
nativeBuildInputs = [ cmake gettext pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace client/CMakeLists.txt \
|
|
|
|
--replace $\{TSL_URL} file://${tsl}
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libdigidocpp
|
|
|
|
opensc
|
|
|
|
openldap
|
|
|
|
openssl
|
|
|
|
pcsclite
|
|
|
|
qtbase
|
|
|
|
qtsvg
|
|
|
|
qttranslations
|
|
|
|
];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
# qdigidoc4's `QPKCS11::reload()` dlopen()s "opensc-pkcs11.so" in QLibrary,
|
|
|
|
# i.e. OpenSC's module is searched for in libQt5Core's DT_RUNPATH and fixing
|
|
|
|
# qdigidoc4's DT_RUNPATH has no effect on Linux (at least OpenBSD's ld.so(1)
|
|
|
|
# searches the program's runtime path as well).
|
|
|
|
# LD_LIBRARY_PATH takes precedence for all calling objects, see dlopen(3).
|
|
|
|
# https://github.com/open-eid/cmake/pull/35 might be an alternative.
|
|
|
|
qtWrapperArgs = [
|
|
|
|
"--prefix LD_LIBRARY_PATH : ${opensc}/lib/pkcs11/"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Qt-based UI for signing and verifying DigiDoc documents";
|
|
|
|
homepage = "https://www.id.ee/";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
2022-01-03 16:56:52 +00:00
|
|
|
maintainers = with maintainers; [ mmahut yana ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|