lol

qdigidoc: 4.4.0 -> 4.5.1

- Code, Text and translation improvements and updates
- Version number change to include new libdigidocpp build.

+11 -2
+11 -2
pkgs/tools/security/qdigidoc/default.nix
··· 1 1 { lib 2 2 , mkDerivation 3 3 , fetchurl 4 + , fetchpatch 4 5 , cmake 5 6 , flatbuffers 6 7 , gettext ··· 17 18 18 19 mkDerivation rec { 19 20 pname = "qdigidoc"; 20 - version = "4.4.0"; 21 + version = "4.5.1"; 21 22 22 23 src = fetchurl { 23 24 url = 24 25 "https://github.com/open-eid/DigiDoc4-Client/releases/download/v${version}/qdigidoc4-${version}.tar.gz"; 25 - hash = "sha256-5zo0yoY0wufm9DWRIccxJ5g4DXn75nT4fd2h+5QP4oQ="; 26 + hash = "sha256-grhSuexp5yd/s8h5AdmdSLBmQY85l9HKZ15oTTvC6PI="; 26 27 }; 27 28 28 29 tsl = fetchurl { 29 30 url = "https://ec.europa.eu/tools/lotl/eu-lotl-pivot-300.xml"; 30 31 sha256 = "1cikz36w9phgczcqnwk4k3mx3kk919wy2327jksmfa4cjfjq4a8d"; 31 32 }; 33 + 34 + patches = [ 35 + # https://github.com/open-eid/DigiDoc4-Client/pull/1251 36 + (fetchpatch { 37 + url = "https://github.com/open-eid/DigiDoc4-Client/commit/30281d14c5fb5582832eafbc254b56f8d685227d.patch"; 38 + hash = "sha256-nv23NbPUogOhS8No3SMIrAcPChl+d1HkxnePpCKIoUw="; 39 + }) 40 + ]; 32 41 33 42 nativeBuildInputs = [ cmake gettext pkg-config qttools ]; 34 43