2021-03-20 04:20:00 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libpg_query";
|
2022-11-02 04:20:00 +00:00
|
|
|
version = "13-2.2.0";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pganalyze";
|
|
|
|
repo = "libpg_query";
|
|
|
|
rev = version;
|
2022-11-02 04:20:00 +00:00
|
|
|
sha256 = "sha256-gEkcv/j8ySUYmM9lx1hRF/SmuQMYVHwZAIYOaCQWAFs=";
|
2021-03-20 04:20:00 +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-06-30 17:47:23 +00:00
|
|
|
platforms = platforms.unix;
|
2021-03-20 04:20:00 +00:00
|
|
|
maintainers = [ maintainers.marsam ];
|
|
|
|
};
|
|
|
|
}
|