at 18.03-beta 669 B view raw
1{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }: 2 3stdenv.mkDerivation rec { 4 name = "libofx-0.9.12"; 5 6 src = fetchurl { 7 url = "mirror://sourceforge/libofx/${name}.tar.gz"; 8 sha256 = "0wvkgffq9qjhjrggg8r1nbhmw65j3lcl4y4cdpmmkrqiz9ia0py1"; 9 }; 10 11 configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ]; 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [ opensp libxml2 curl ]; 14 15 meta = { 16 description = "Opensource implementation of the Open Financial eXchange specification"; 17 homepage = http://libofx.sourceforge.net/; 18 license = "LGPL"; 19 platforms = stdenv.lib.platforms.linux; 20 maintainers = [ ]; 21 }; 22} 23