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

34 lines
917 B
Nix
Raw Normal View History

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