2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, gmp, gwenhywfar, libtool, libxml2, libxslt
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config, gettext, xmlsec, zlib
|
2014-02-23 11:21:19 +00:00
|
|
|
}:
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2018-04-27 16:24:21 +01:00
|
|
|
let
|
|
|
|
inherit ((import ./sources.nix).aqbanking) sha256 releaseId version;
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "aqbanking";
|
2018-04-27 16:24:21 +01:00
|
|
|
inherit version;
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2020-02-27 11:47:58 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.aquamaniac.de/rdm/attachments/download/${releaseId}/${pname}-${version}.tar.gz";
|
2016-06-02 17:17:04 +01:00
|
|
|
inherit sha256;
|
2012-01-08 19:29:07 +00:00
|
|
|
};
|
|
|
|
|
2020-02-27 11:47:58 +00:00
|
|
|
# Set the include dir explicitly, this fixes a build error when building
|
|
|
|
# kmymoney because otherwise the includedir is overwritten by gwenhywfar's
|
|
|
|
# cmake file
|
2016-06-02 15:29:16 +01:00
|
|
|
postPatch = ''
|
2020-02-27 11:47:58 +00:00
|
|
|
sed -i '/^set_and_check(AQBANKING_INCLUDE_DIRS "@aqbanking_headerdir@")/i set_and_check(includedir "@includedir@")' aqbanking-config.cmake.in
|
2016-06-02 15:29:16 +01:00
|
|
|
sed -i -e '/^aqbanking_plugindir=/ {
|
|
|
|
c aqbanking_plugindir="\''${libdir}/gwenhywfar/plugins"
|
|
|
|
}' configure
|
|
|
|
'';
|
|
|
|
|
2014-02-23 11:21:19 +00:00
|
|
|
buildInputs = [ gmp gwenhywfar libtool libxml2 libxslt xmlsec zlib ];
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gettext ];
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-02-23 11:21:19 +00:00
|
|
|
description = "An interface to banking tasks, file formats and country information";
|
2020-10-06 07:59:13 +01:00
|
|
|
homepage = "https://www.aquamaniac.de/";
|
2013-11-04 23:04:36 +00:00
|
|
|
hydraPlatforms = [];
|
2014-02-23 11:44:18 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
2014-02-23 11:21:19 +00:00
|
|
|
platforms = platforms.linux;
|
2012-01-08 19:29:07 +00:00
|
|
|
};
|
|
|
|
}
|