qdigidoc: 4.4.0 -> 4.5.1

- Code, Text and translation improvements and updates
 - Version number change to include new libdigidocpp build.
This commit is contained in:
Florian Klink 2024-05-13 13:20:18 +02:00
parent c8b2579f1f
commit 9482aa9772

View File

@ -1,6 +1,7 @@
{ lib
, mkDerivation
, fetchurl
, fetchpatch
, cmake
, flatbuffers
, gettext
@ -17,12 +18,12 @@
mkDerivation rec {
pname = "qdigidoc";
version = "4.4.0";
version = "4.5.1";
src = fetchurl {
url =
"https://github.com/open-eid/DigiDoc4-Client/releases/download/v${version}/qdigidoc4-${version}.tar.gz";
hash = "sha256-5zo0yoY0wufm9DWRIccxJ5g4DXn75nT4fd2h+5QP4oQ=";
hash = "sha256-grhSuexp5yd/s8h5AdmdSLBmQY85l9HKZ15oTTvC6PI=";
};
tsl = fetchurl {
@ -30,6 +31,14 @@ mkDerivation rec {
sha256 = "1cikz36w9phgczcqnwk4k3mx3kk919wy2327jksmfa4cjfjq4a8d";
};
patches = [
# https://github.com/open-eid/DigiDoc4-Client/pull/1251
(fetchpatch {
url = "https://github.com/open-eid/DigiDoc4-Client/commit/30281d14c5fb5582832eafbc254b56f8d685227d.patch";
hash = "sha256-nv23NbPUogOhS8No3SMIrAcPChl+d1HkxnePpCKIoUw=";
})
];
nativeBuildInputs = [ cmake gettext pkg-config qttools ];
postPatch = ''