2010-01-26 22:04:54 +00:00
|
|
|
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-05-07 08:50:49 +00:00
|
|
|
name = "libofx-0.9.13";
|
2010-01-26 22:04:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
2018-05-07 08:50:49 +00:00
|
|
|
sha256 = "1r60pj1jn269mk4s4025qxllkzgvnbw5r3vby8j2ry5svmygksjp";
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
2017-09-05 21:26:13 +00: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 17:39:33 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ ];
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|