bae324acb7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libofx/versions
24 lines
669 B
Nix
24 lines
669 B
Nix
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libofx-0.9.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
|
sha256 = "02i9zxkp66yxjpjay5dscfh53bz5vxy03zcxncpw09svl6zmf9xq";
|
|
};
|
|
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
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 = [ ];
|
|
};
|
|
}
|
|
|