9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
28 lines
864 B
Nix
28 lines
864 B
Nix
{ stdenv, fetchFromGitHub, opensp, pkg-config, libxml2, curl
|
|
, autoconf, automake, libtool, gengetopt, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libofx";
|
|
version = "0.9.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LibOFX";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1jx56ma351p8af8dvavygjwf6ipa7qbgq7bpdsymwj27apdnixfy";
|
|
};
|
|
|
|
preConfigure = "./autogen.sh";
|
|
configureFlags = [ "--with-opensp-includes=${opensp}/include/OpenSP" ];
|
|
nativeBuildInputs = [ pkg-config libtool autoconf automake gengetopt ];
|
|
buildInputs = [ opensp libxml2 curl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
|
|
|
|
meta = {
|
|
description = "Opensource implementation of the Open Financial eXchange specification";
|
|
homepage = "http://libofx.sourceforge.net/";
|
|
license = "LGPL";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|