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

31 lines
812 B
Nix
Raw Normal View History

2017-12-25 19:11:58 +03:00
{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, mysql }:
2017-03-27 04:05:25 +03:00
stdenv.mkDerivation rec {
name = "poco-${version}";
version = "1.7.8";
src = fetchurl {
url = "https://pocoproject.org/releases/${name}/${name}-all.tar.gz";
sha256 = "17y6kvj4qdpb3p1im8n9qfylfh4bd2xsvbpn24jv97x7f146nhjf";
};
nativeBuildInputs = [ cmake pkgconfig ];
2017-12-25 19:11:58 +03:00
buildInputs = [ zlib pcre expat sqlite openssl unixODBC mysql.connector-c ];
2017-03-27 04:05:25 +03: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;
};
}