2021-06-17 21:55:41 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, postgresql, python3, gnused }:
|
2015-05-26 20:46:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-04 02:17:04 +01:00
|
|
|
pname = "libpqxx";
|
2022-01-11 18:28:29 +01:00
|
|
|
version = "7.7.0";
|
2015-05-26 20:46:39 +02:00
|
|
|
|
2018-02-18 16:59:52 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jtv";
|
2019-02-04 02:17:04 +01:00
|
|
|
repo = pname;
|
2018-02-18 16:59:52 +01:00
|
|
|
rev = version;
|
2022-01-11 18:28:29 +01:00
|
|
|
sha256 = "sha256-O30czHwEDXz5xY4o3MWhmEK06OKTKMQCy0M6qwSEpy8=";
|
2015-05-26 20:46:39 +02:00
|
|
|
};
|
|
|
|
|
2021-06-17 21:55:41 +02:00
|
|
|
nativeBuildInputs = [ gnused python3 ];
|
|
|
|
buildInputs = [ postgresql ];
|
2015-05-26 20:46:39 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
2021-06-17 21:55:41 +02:00
|
|
|
patchShebangs ./tools/splitconfig
|
2015-05-26 20:46:39 +02:00
|
|
|
'';
|
|
|
|
|
2021-06-17 21:55:41 +02:00
|
|
|
configureFlags = [ "--enable-shared --disable-documentation" ];
|
2015-05-26 20:46:39 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A C++ library to access PostgreSQL databases";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://pqxx.org/development/libpqxx/";
|
2018-12-06 17:34:10 +01:00
|
|
|
license = lib.licenses.bsd3;
|
2020-09-05 20:49:33 +02:00
|
|
|
platforms = lib.platforms.unix;
|
2015-05-26 20:46:39 +02:00
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
};
|
|
|
|
}
|