nixpkgs/pkgs/development/libraries/poco/default.nix

32 lines
883 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config, zlib, pcre, expat, sqlite, openssl, unixODBC, libmysqlclient }:
2017-03-27 04:05:25 +03:00
stdenv.mkDerivation rec {
pname = "poco";
2017-03-27 04:05:25 +03:00
2020-06-08 10:10:06 +03:00
version = "1.10.1";
2017-03-27 04:05:25 +03:00
src = fetchurl {
url = "https://pocoproject.org/releases/${pname}-${version}/${pname}-${version}-all.tar.gz";
2020-06-08 10:10:06 +03:00
sha256 = "1jilzh0h6ik5lr167nax7q6nrpzxl99p11pkl202ig06pgh32nbz";
2017-03-27 04:05:25 +03:00
};
nativeBuildInputs = [ cmake pkg-config ];
2017-03-27 04:05:25 +03:00
buildInputs = [ zlib pcre expat sqlite openssl unixODBC libmysqlclient ];
2017-03-27 04:05:25 +03:00
MYSQL_DIR = libmysqlclient;
2018-05-04 22:11:45 +03:00
MYSQL_INCLUDE_DIR = "${MYSQL_DIR}/include/mysql";
2017-03-27 04:05:25 +03:00
cmakeFlags = [
"-DPOCO_UNBUNDLED=ON"
];
meta = with lib; {
homepage = "https://pocoproject.org/";
2017-03-27 04:05:25 +03:00
description = "Cross-platform C++ libraries with a network/internet focus";
license = licenses.boost;
maintainers = with maintainers; [ orivej ];
2020-03-27 04:00:00 +03:00
platforms = platforms.unix;
2017-03-27 04:05:25 +03:00
};
}