2010-01-26 22:04:54 +00:00
|
|
|
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 04:53:16 +00:00
|
|
|
name = "libofx-0.9.12";
|
2010-01-26 22:04:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
2018-02-27 04:53:16 +00:00
|
|
|
sha256 = "0wvkgffq9qjhjrggg8r1nbhmw65j3lcl4y4cdpmmkrqiz9ia0py1";
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ opensp libxml2 curl ];
|
2010-01-26 22:04:54 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Opensource implementation of the Open Financial eXchange specification";
|
|
|
|
homepage = http://libofx.sourceforge.net/;
|
|
|
|
license = "LGPL";
|
2016-09-01 18:39:33 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|