Merge pull request #75155 from risicle/ris-libofx-0.9.15
libofx: 0.9.14 -> 0.9.15, addressing CVE-2019-9656
This commit is contained in:
commit
b6de96bf34
@ -1,23 +1,27 @@
|
|||||||
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
{ stdenv, fetchFromGitHub, opensp, pkgconfig, libxml2, curl
|
||||||
|
, autoconf, automake, libtool, gengetopt, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libofx-0.9.14";
|
pname = "libofx";
|
||||||
|
version = "0.9.15";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
owner = "LibOFX";
|
||||||
sha256 = "02i9zxkp66yxjpjay5dscfh53bz5vxy03zcxncpw09svl6zmf9xq";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1jx56ma351p8af8dvavygjwf6ipa7qbgq7bpdsymwj27apdnixfy";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
preConfigure = "./autogen.sh";
|
||||||
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig libtool autoconf automake gengetopt ];
|
||||||
buildInputs = [ opensp libxml2 curl ];
|
buildInputs = [ opensp libxml2 curl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Opensource implementation of the Open Financial eXchange specification";
|
description = "Opensource implementation of the Open Financial eXchange specification";
|
||||||
homepage = http://libofx.sourceforge.net/;
|
homepage = http://libofx.sourceforge.net/;
|
||||||
license = "LGPL";
|
license = "LGPL";
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user