a879fe9f24
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofx2qif -h` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofx2qif --help` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofx2qif help` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump -h` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump --help` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump help` got 0 exit code - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump -V` and found version 0.9.12 - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump --version` and found version 0.9.12 - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump -h` and found version 0.9.12 - ran `/nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12/bin/ofxdump --help` and found version 0.9.12 - found 0.9.12 with grep in /nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12 - found 0.9.12 in filename of file in /nix/store/i715fag3lnprgjw9nj4j1xkjc3vijwp1-libofx-0.9.12 cc ""
24 lines
669 B
Nix
24 lines
669 B
Nix
{ stdenv, fetchurl, opensp, pkgconfig, libxml2, curl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libofx-0.9.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libofx/${name}.tar.gz";
|
|
sha256 = "0wvkgffq9qjhjrggg8r1nbhmw65j3lcl4y4cdpmmkrqiz9ia0py1";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|
|
|