2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, opensp, pkg-config, libxml2, curl
|
2019-12-07 13:11:50 +00:00
|
|
|
, autoconf, automake, libtool, gengetopt, libiconv }:
|
2019-12-07 12:59:32 +00:00
|
|
|
|
2010-01-26 22:04:54 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-12-07 12:59:32 +00:00
|
|
|
pname = "libofx";
|
2021-03-03 01:05:35 +00:00
|
|
|
version = "0.10.1";
|
2010-01-26 22:04:54 +00:00
|
|
|
|
2019-12-07 12:59:32 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LibOFX";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-03-03 01:05:35 +00:00
|
|
|
sha256 = "sha256-QIasZKwSD9YCidHCxT/HOThxE5HEQWD0I2/loDP6mlU=";
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
|
2019-12-07 12:59:32 +00:00
|
|
|
preConfigure = "./autogen.sh";
|
2010-01-26 22:04:54 +00:00
|
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool autoconf automake gengetopt ];
|
2021-01-21 17:00:13 +00:00
|
|
|
buildInputs = [ opensp libxml2 curl ] ++ lib.optional stdenv.isDarwin libiconv;
|
2010-01-26 22:04:54 +00:00
|
|
|
|
2021-01-19 21:20:11 +00:00
|
|
|
meta = {
|
2010-01-26 22:04:54 +00:00
|
|
|
description = "Opensource implementation of the Open Financial eXchange specification";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libofx.sourceforge.net/";
|
2010-01-26 22:04:54 +00:00
|
|
|
license = "LGPL";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2010-01-26 22:04:54 +00:00
|
|
|
};
|
|
|
|
}
|