soci: 4.0.1 -> 4.0.2 + build with postgresql and boost

This commit is contained in:
Artturin 2021-09-29 14:12:27 +03:00
parent 3cf6c7ba7c
commit 980f14081f

View File

@ -1,25 +1,31 @@
{ cmake
, fetchFromGitHub
, sqlite
, postgresql
, boost
, lib, stdenv
}:
stdenv.mkDerivation rec {
pname = "soci";
version = "4.0.1";
version = "4.0.2";
src = fetchFromGitHub {
owner = "SOCI";
repo = pname;
rev = version;
sha256 = "sha256-d4GtxDaB+yGfyCnbvnLRUYcrPSMkUF7Opu6+SZd8opM=";
rev = "v${version}";
sha256 = "sha256-NE0ApbX8HG2VAQ9cg9+kX3kJQ4PR1XvWL9BlT8NphmE=";
};
# Do not build static libraries
cmakeFlags = [ "-DSOCI_STATIC=OFF" "-DCMAKE_CXX_STANDARD=11" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ sqlite ];
buildInputs = [
sqlite
postgresql
boost
];
meta = with lib; {
description = "Database access library for C++";