2022-05-31 23:11:58 +01:00
|
|
|
{ lib, mkDerivation, fetchurl, cmake, gettext, makeWrapper
|
2021-12-19 18:13:46 +00:00
|
|
|
, pkg-config, libdigidocpp, opensc, openldap, openssl, pcsclite, qtbase
|
|
|
|
, qttranslations, qtsvg }:
|
2016-04-26 22:48:13 +01:00
|
|
|
|
2020-01-29 08:13:28 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "qdigidoc";
|
2021-12-19 14:06:53 +00:00
|
|
|
version = "4.2.9";
|
2016-04-26 22:48:13 +01:00
|
|
|
|
2021-12-19 18:13:46 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url =
|
|
|
|
"https://github.com/open-eid/DigiDoc4-Client/releases/download/v${version}/qdigidoc4-${version}.tar.gz";
|
|
|
|
sha256 = "1rhd3mvj6ld16zgfscj81f1vhs2nvifsizky509l1av7dsjfbbzr";
|
2016-04-26 22:48:13 +01:00
|
|
|
};
|
|
|
|
|
2018-08-10 11:50:22 +01:00
|
|
|
tsl = fetchurl {
|
2021-12-19 13:41:20 +00:00
|
|
|
url = "https://ec.europa.eu/tools/lotl/eu-lotl-pivot-300.xml";
|
|
|
|
sha256 = "1cikz36w9phgczcqnwk4k3mx3kk919wy2327jksmfa4cjfjq4a8d";
|
2018-08-10 11:50:22 +01:00
|
|
|
};
|
|
|
|
|
2022-05-31 23:11:58 +01:00
|
|
|
nativeBuildInputs = [ cmake gettext makeWrapper pkg-config ];
|
2018-08-10 11:50:22 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace client/CMakeLists.txt \
|
|
|
|
--replace $\{TSL_URL} file://${tsl}
|
|
|
|
'';
|
|
|
|
|
2018-07-05 13:41:15 +01:00
|
|
|
buildInputs = [
|
|
|
|
libdigidocpp
|
|
|
|
opensc
|
|
|
|
openldap
|
|
|
|
openssl
|
|
|
|
pcsclite
|
|
|
|
qtbase
|
2018-11-08 11:42:01 +00:00
|
|
|
qtsvg
|
2018-07-05 13:41:15 +01:00
|
|
|
qttranslations
|
|
|
|
];
|
2016-04-26 22:48:13 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2018-11-08 11:42:01 +00:00
|
|
|
wrapProgram $out/bin/qdigidoc4 \
|
2016-04-26 22:48:13 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${opensc}/lib/pkcs11/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-07-05 13:41:15 +01:00
|
|
|
description = "Qt-based UI for signing and verifying DigiDoc documents";
|
2020-01-29 08:14:01 +00:00
|
|
|
homepage = "https://www.id.ee/";
|
2018-07-05 13:41:15 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2016-04-26 22:48:13 +01:00
|
|
|
platforms = platforms.linux;
|
2021-12-31 18:48:55 +00:00
|
|
|
maintainers = with maintainers; [ mmahut yana ];
|
2016-04-26 22:48:13 +01:00
|
|
|
};
|
|
|
|
}
|