forked from mirrors/nixpkgs
5bacb10814
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc -h` got 0 exit code - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc --help` got 0 exit code - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/cpspc help` got 0 exit code - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp -h` got 0 exit code - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp --help` got 0 exit code - ran `/nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1/bin/f2cpsp help` got 0 exit code - found 1.8.1 with grep in /nix/store/i0mvrxm8vlgilmmkqrlp33g122iw5zlm-poco-1.8.1 cc "@orivej"
31 lines
812 B
Nix
31 lines
812 B
Nix
{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, mysql }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "poco-${version}";
|
|
|
|
version = "1.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://pocoproject.org/releases/${name}/${name}-all.tar.gz";
|
|
sha256 = "1pg48kk0354vsc6j2wnrk893l5xcsr3bjmkgykd3harcnvfqs7l8";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ zlib pcre expat sqlite openssl unixODBC mysql.connector-c ];
|
|
|
|
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;
|
|
};
|
|
}
|