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.
32 lines
885 B
Nix
32 lines
885 B
Nix
{ stdenv, fetchurl, cmake, pkg-config, zlib, pcre, expat, sqlite, openssl, unixODBC, libmysqlclient }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "poco";
|
|
|
|
version = "1.10.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://pocoproject.org/releases/${pname}-${version}/${pname}-${version}-all.tar.gz";
|
|
sha256 = "1jilzh0h6ik5lr167nax7q6nrpzxl99p11pkl202ig06pgh32nbz";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ zlib pcre expat sqlite openssl unixODBC libmysqlclient ];
|
|
|
|
MYSQL_DIR = libmysqlclient;
|
|
MYSQL_INCLUDE_DIR = "${MYSQL_DIR}/include/mysql";
|
|
|
|
cmakeFlags = [
|
|
"-DPOCO_UNBUNDLED=ON"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://pocoproject.org/";
|
|
description = "Cross-platform C++ libraries with a network/internet focus";
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|