2021-04-08 16:26:57 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libpg_query";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "14-3.0.0";
|
2021-04-08 16:26:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pganalyze";
|
|
|
|
repo = "libpg_query";
|
|
|
|
rev = version;
|
2022-12-17 10:02:37 +00:00
|
|
|
sha256 = "sha256-rICN8fkPcYw32N6TdpbrszGUoRzwQdfRSW6A0AC8toM=";
|
2021-04-08 16:26:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ which ];
|
|
|
|
|
|
|
|
makeFlags = [ "build" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm644 -t $out/lib libpg_query.a
|
|
|
|
install -Dm644 -t $out/include pg_query.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/pganalyze/libpg_query";
|
|
|
|
description = "C library for accessing the PostgreSQL parser outside of the server environment";
|
|
|
|
changelog = "https://github.com/pganalyze/libpg_query/raw/${version}/CHANGELOG.md";
|
|
|
|
license = licenses.bsd3;
|
2022-07-14 12:49:19 +00:00
|
|
|
platforms = platforms.unix;
|
2021-04-08 16:26:57 +00:00
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|