2010-01-27 01:04:54 +03:00
|
|
|
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-04 08:33:25 +04:00
|
|
|
name = "libofx-0.9.9";
|
2010-01-27 01:04:54 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
2013-12-04 08:33:25 +04:00
|
|
|
sha256 = "08vvfj1rq0drcdfchrgb5zp05a2xl3a5aapsfgj0gqy3rp2qivwl";
|
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";
|
2010-09-26 23:40:41 +04:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
2010-01-27 01:04:54 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|