2010-01-27 01:04:54 +03:00
|
|
|
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-07 23:21:18 +04:00
|
|
|
name = "libofx-0.9.10";
|
2010-01-27 01:04:54 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
2014-10-07 23:21:18 +04:00
|
|
|
sha256 = "15gnbh4mszfxk70srdcjkdykk7dbhzqxi3pxgh48a9zg8i4nmqjl";
|
2010-01-27 01:04:54 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
|
|
|
buildInputs = [ opensp pkgconfig libxml2 curl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Opensource implementation of the Open Financial eXchange specification";
|
|
|
|
homepage = http://libofx.sourceforge.net/;
|
|
|
|
license = "LGPL";
|
2016-09-01 20:39:33 +03:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-09-26 23:40:41 +04:00
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
2010-01-27 01:04:54 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|