summary refs log tree commit diff
path: root/pkgs/development/libraries/aqbanking
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-04-27 17:24:21 +0200
committeraszlig <aszlig@nix.build>2018-04-27 18:34:55 +0200
commit191f4c210a87b2eddeabd098cd57a85fadfa0ee2 (patch)
tree9b3af642e7d848404c6d6b0006edc62201983a3d /pkgs/development/libraries/aqbanking
parente7e2df17da4080c54073c897040ae03f3b6fc669 (diff)
downloadnixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar.gz
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar.bz2
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar.lz
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar.xz
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.tar.zst
nixpkgs-191f4c210a87b2eddeabd098cd57a85fadfa0ee2.zip
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
Diffstat (limited to 'pkgs/development/libraries/aqbanking')
-rw-r--r--pkgs/development/libraries/aqbanking/default.nix9
-rw-r--r--pkgs/development/libraries/aqbanking/sources.nix6
2 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix
index ad930a705c5..b26291469e7 100644
--- a/pkgs/development/libraries/aqbanking/default.nix
+++ b/pkgs/development/libraries/aqbanking/default.nix
@@ -2,13 +2,14 @@
 , pkgconfig, gettext, xmlsec, zlib
 }:
 
-stdenv.mkDerivation rec {
+let
+  inherit ((import ./sources.nix).aqbanking) sha256 releaseId version;
+in stdenv.mkDerivation rec {
   name = "aqbanking-${version}";
-  version = "5.6.10";
+  inherit version;
 
   src = let
-    inherit ((import ./sources.nix).aqbanking) sha256 releaseId;
-    qstring = "package=03&release=${releaseId}&file=01";
+    qstring = "package=03&release=${releaseId}&file=02";
     mkURLs = map (base: "${base}/sites/download/download.php?${qstring}");
   in fetchurl {
     name = "${name}.tar.gz";
diff --git a/pkgs/development/libraries/aqbanking/sources.nix b/pkgs/development/libraries/aqbanking/sources.nix
index ab69240f621..884543d282a 100644
--- a/pkgs/development/libraries/aqbanking/sources.nix
+++ b/pkgs/development/libraries/aqbanking/sources.nix
@@ -6,7 +6,7 @@
   libchipcard.version = "5.0.4";
   libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj";
   libchipcard.releaseId = "200";
-  aqbanking.version = "5.6.12";
-  aqbanking.sha256 = "08jbwmiv6f3v8iqdr44x4szna496fqcjfi6mlx04cnbx91m70lh6";
-  aqbanking.releaseId = "208";
+  aqbanking.version = "5.7.8";
+  aqbanking.sha256 = "0s67mysskbiw1h1p0np4ph4351r7wq3nc873vylam7lsqi66xy0n";
+  aqbanking.releaseId = "217";
 }