mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge: libpqxx: 7.7.5 -> 7.9.2 (#356414)
This commit is contained in:
commit
09a0f56f15
@ -1,31 +1,54 @@
|
||||
{ lib, stdenv, fetchFromGitHub, postgresql, python3 }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
postgresql,
|
||||
python3,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libpqxx";
|
||||
version = "7.7.5";
|
||||
version = "7.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jtv";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-mvGPMbk4b8NmPvzy5hS+Au69NtDGha8ONTEQf6I3VZE=";
|
||||
repo = "libpqxx";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-I5e0iqXlZqDOMa1PlnrxpcKt1c2mbnSbVQrpi1Gh25o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ python3 ];
|
||||
buildInputs = [ postgresql ];
|
||||
outputs = [
|
||||
"out"
|
||||
"dev"
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs ./tools/splitconfig
|
||||
nativeBuildInputs = [
|
||||
postgresql.dev
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
postgresql.lib
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./tools/splitconfig.py
|
||||
'';
|
||||
|
||||
configureFlags = [ "--enable-shared --disable-documentation" ];
|
||||
CXXFLAGS = [ "-std=c++17" ];
|
||||
configureFlags = [
|
||||
"--disable-documentation"
|
||||
"--enable-shared"
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/jtv/libpqxx/releases/tag/${finalAttrs.version}";
|
||||
description = "C++ library to access PostgreSQL databases";
|
||||
downloadPage = "https://github.com/jtv/libpqxx";
|
||||
homepage = "https://pqxx.org/development/libpqxx/";
|
||||
license = lib.licenses.bsd3;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user