nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
2
3stdenv.mkDerivation rec {
4 name = "libofx-0.9.13";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libofx/${name}.tar.gz";
8 sha256 = "1r60pj1jn269mk4s4025qxllkzgvnbw5r3vby8j2ry5svmygksjp";
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