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

34 lines
898 B
Nix
Raw Normal View History

2017-12-25 16:11:58 +00:00
{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, mysql }:
2017-03-27 01:05:25 +00:00
stdenv.mkDerivation rec {
name = "poco-${version}";
version = "1.9.0";
2017-03-27 01:05:25 +00:00
src = fetchurl {
url = "https://pocoproject.org/releases/${name}/${name}-all.tar.gz";
sha256 = "11z1i0drbacs7c7d5virc3kz7wh79svd06iffh8j6giikl7vz1q3";
2017-03-27 01:05:25 +00:00
};
nativeBuildInputs = [ cmake pkgconfig ];
2017-12-25 16:11:58 +00:00
buildInputs = [ zlib pcre expat sqlite openssl unixODBC mysql.connector-c ];
2017-03-27 01:05:25 +00:00
2018-05-04 19:11:45 +00:00
MYSQL_DIR = mysql.connector-c;
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/;
description = "Cross-platform C++ libraries with a network/internet focus";
license = licenses.boost;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}