nixpkgs/pkgs/development/libraries/libofx/default.nix
Eelco Dolstra 621963488f * GnuCash updated to 2.4.8.
svn path=/nixpkgs/trunk/; revision=30780
2011-12-06 18:44:05 +00:00

23 lines
668 B
Nix

{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
stdenv.mkDerivation rec {
name = "libofx-0.9.4";
src = fetchurl {
url = "mirror://sourceforge/libofx/${name}.tar.gz";
sha256 = "1byvc1ar7s0nivi5cmycwlwh1y4xiad7ipfkgx57lbk7slgn8c4v";
};
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
buildInputs = [ opensp pkgconfig libxml2 curl ];
meta = {
description = "Opensource implementation of the Open Financial eXchange specification";
homepage = http://libofx.sourceforge.net/;
license = "LGPL";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}