Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

aqbanking: 5.6.12 -> 5.7.8

Upstream changes in 5.7.8:

* Update bank information files for German banks because the format of
ZKA files has changed in the meantime.

Upstream release notes in German:

https://www.aquamaniac.de/sites/download/releasenote.php?package=03&release=217

Upstream changes in 5.7.7:

* Fix of manually adding new HBCI accounts (for example using
KMyMoney).
* Fix wrong truncation of account numbers in some turnovers of the
SWIFT parser.
* Simplified code for inserting new account data while fetching HBCI
accounts.
* Update information for German banks.

Upstream release notes in German:

https://www.aquamaniac.de/sites/download/releasenote.php?package=03&release=216

As with the gwenhywfar update, the updater script (update.sh) actually
didn't get the right file to download, so I temporarily modified it to
download file number 2 because file number 1 is the GPG signature. The
reason why I didn't fix the updater is because the upstream site will
have different URLs in the next upcoming version, so our updater is
basically end-of-life for now.

I also changed the package expression to use the version from
sources.nix instead of a hardcoded value.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @goibhniu

aszlig 191f4c21 e7e2df17

+8 -7
+5 -4
pkgs/development/libraries/aqbanking/default.nix
··· 2 , pkgconfig, gettext, xmlsec, zlib 3 }: 4 5 - stdenv.mkDerivation rec { 6 name = "aqbanking-${version}"; 7 - version = "5.6.10"; 8 9 src = let 10 - inherit ((import ./sources.nix).aqbanking) sha256 releaseId; 11 - qstring = "package=03&release=${releaseId}&file=01"; 12 mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); 13 in fetchurl { 14 name = "${name}.tar.gz";
··· 2 , pkgconfig, gettext, xmlsec, zlib 3 }: 4 5 + let 6 + inherit ((import ./sources.nix).aqbanking) sha256 releaseId version; 7 + in stdenv.mkDerivation rec { 8 name = "aqbanking-${version}"; 9 + inherit version; 10 11 src = let 12 + qstring = "package=03&release=${releaseId}&file=02"; 13 mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); 14 in fetchurl { 15 name = "${name}.tar.gz";
+3 -3
pkgs/development/libraries/aqbanking/sources.nix
··· 6 libchipcard.version = "5.0.4"; 7 libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; 8 libchipcard.releaseId = "200"; 9 - aqbanking.version = "5.6.12"; 10 - aqbanking.sha256 = "08jbwmiv6f3v8iqdr44x4szna496fqcjfi6mlx04cnbx91m70lh6"; 11 - aqbanking.releaseId = "208"; 12 }
··· 6 libchipcard.version = "5.0.4"; 7 libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; 8 libchipcard.releaseId = "200"; 9 + aqbanking.version = "5.7.8"; 10 + aqbanking.sha256 = "0s67mysskbiw1h1p0np4ph4351r7wq3nc873vylam7lsqi66xy0n"; 11 + aqbanking.releaseId = "217"; 12 }