libofx: 0.9.14 -> 0.9.15 (security)

resolving CVE-2019-9656
This commit is contained in:
Robert Scott 2019-12-07 12:59:32 +00:00
parent 7d17a24e0e
commit 0351829bf8

View File

@ -1,15 +1,20 @@
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
stdenv.mkDerivation rec {
name = "libofx-0.9.14";
{ stdenv, fetchFromGitHub, opensp, pkgconfig, libxml2, curl
, autoconf, automake, libtool, gengetopt }:
src = fetchurl {
url = "mirror://sourceforge/libofx/${name}.tar.gz";
sha256 = "02i9zxkp66yxjpjay5dscfh53bz5vxy03zcxncpw09svl6zmf9xq";
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 ];
nativeBuildInputs = [ pkgconfig libtool autoconf automake gengetopt ];
buildInputs = [ opensp libxml2 curl ];
meta = {
@ -20,4 +25,3 @@ stdenv.mkDerivation rec {
maintainers = [ ];
};
}