nixpkgs-suyu/pkgs/development/libraries/libofx/default.nix
Robert Scott 0351829bf8 libofx: 0.9.14 -> 0.9.15 (security)
resolving CVE-2019-9656
2019-12-07 13:01:03 +00:00

27 lines
803 B
Nix

{ stdenv, fetchFromGitHub, opensp, pkgconfig, libxml2, curl
, autoconf, automake, libtool, gengetopt }:
stdenv.mkDerivation rec {
pname = "libofx";
version = "0.9.15";
src = fetchFromGitHub {
owner = "LibOFX";
repo = pname;
rev = version;
sha256 = "1jx56ma351p8af8dvavygjwf6ipa7qbgq7bpdsymwj27apdnixfy";
};
preConfigure = "./autogen.sh";
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
nativeBuildInputs = [ pkgconfig libtool autoconf automake gengetopt ];
buildInputs = [ opensp libxml2 curl ];
meta = {
description = "Opensource implementation of the Open Financial eXchange specification";
homepage = http://libofx.sourceforge.net/;
license = "LGPL";
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
};
}