1{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
2
3stdenv.mkDerivation rec {
4 name = "libofx-0.9.10";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libofx/${name}.tar.gz";
8 sha256 = "15gnbh4mszfxk70srdcjkdykk7dbhzqxi3pxgh48a9zg8i4nmqjl";
9 };
10
11 configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
12 buildInputs = [ opensp pkgconfig libxml2 curl ];
13
14 meta = {
15 description = "Opensource implementation of the Open Financial eXchange specification";
16 homepage = http://libofx.sourceforge.net/;
17 license = "LGPL";
18 platforms = stdenv.lib.platforms.linux;
19 maintainers = [ stdenv.lib.maintainers.urkud ];
20 };
21}
22