aqbanking: 6.3.0 -> 6.5.0

This commit is contained in:
Martin Weinelt 2022-07-10 19:36:57 +02:00
parent 4b6c8c23b1
commit 1e68a02e4a
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 9 additions and 5 deletions

View File

@ -3,14 +3,14 @@
}:
let
inherit ((import ./sources.nix).aqbanking) sha256 releaseId version;
inherit ((import ./sources.nix).aqbanking) hash releaseId version;
in stdenv.mkDerivation rec {
pname = "aqbanking";
inherit version;
src = fetchurl {
url = "https://www.aquamaniac.de/rdm/attachments/download/${releaseId}/${pname}-${version}.tar.gz";
inherit sha256;
inherit hash;
};
# Set the include dir explicitly, this fixes a build error when building

View File

@ -5,7 +5,11 @@
libchipcard.version = "5.0.4";
libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj";
libchipcard.releaseId = "158";
aqbanking.version = "6.3.0";
aqbanking.sha256 = "1k2mhdnk0jc0inq1hmp74m3y7azxrjm8r07x5k1pp4ic0yi5vs50";
aqbanking.releaseId = "372";
# https://www.aquamaniac.de/rdm/projects/aqbanking/files
aqbanking = {
version = "6.5.0";
hash = "sha256-TS076ghulq2ntoGSBtTrQWjOt+Mtzppo3Gxuq8yetj4=";
releaseId = "435";
};
}