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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
734 B
Nix
Raw Normal View History

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