2014-02-23 11:21:19 +00:00
|
|
|
{ stdenv, fetchurl, gmp, gwenhywfar, libtool, libxml2, libxslt
|
2016-06-02 17:55:30 +01:00
|
|
|
, pkgconfig, 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
|
|
|
|
2016-06-02 15:18:02 +01:00
|
|
|
src = let
|
2018-04-27 16:24:21 +01:00
|
|
|
qstring = "package=03&release=${releaseId}&file=02";
|
2016-06-02 15:18:02 +01:00
|
|
|
mkURLs = map (base: "${base}/sites/download/download.php?${qstring}");
|
|
|
|
in fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
name = "${pname}-${version}.tar.gz";
|
2016-06-02 15:18:02 +01:00
|
|
|
urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ];
|
2016-06-02 17:17:04 +01:00
|
|
|
inherit sha256;
|
2012-01-08 19:29:07 +00:00
|
|
|
};
|
|
|
|
|
2016-06-02 15:29:16 +01:00
|
|
|
postPatch = ''
|
|
|
|
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
|
|
|
|
2016-06-02 17:55:30 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext ];
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2016-06-02 15:29:16 +01:00
|
|
|
configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ];
|
2012-01-08 19:29:07 +00:00
|
|
|
|
2014-02-23 11:21:19 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interface to banking tasks, file formats and country information";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www2.aquamaniac.de/sites/download/packages.php?package=03&showall=1;
|
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
|
|
|
};
|
|
|
|
}
|