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

34 lines
916 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, libmysqlclient }:
2017-03-27 01:05:25 +00:00
stdenv.mkDerivation rec {
pname = "poco";
2017-03-27 01:05:25 +00:00
version = "1.9.4";
2017-03-27 01:05:25 +00:00
src = fetchurl {
url = "https://pocoproject.org/releases/${pname}-${version}/${pname}-${version}-all.tar.gz";
sha256 = "0xzxi3r4v2076kcxhj7b1achma2lqy01spshxq8sfh0jn5bz4d7b";
2017-03-27 01:05:25 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ zlib pcre expat sqlite openssl unixODBC libmysqlclient ];
2017-03-27 01:05:25 +00:00
MYSQL_DIR = libmysqlclient;
2018-05-04 19:11:45 +00:00
MYSQL_INCLUDE_DIR = "${MYSQL_DIR}/include/mysql";
2017-03-27 01:05:25 +00:00
cmakeFlags = [
"-DPOCO_UNBUNDLED=ON"
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "https://pocoproject.org/";
2017-03-27 01:05:25 +00: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 01:05:25 +00:00
};
}