lol

Merge pull request #242165 from marsam/update-libpg_query

libpg_query: 15-4.2.1 -> 15-4.2.2

authored by

Mario Rodas and committed by
GitHub
4429be18 1731b718

+8 -4
+8 -4
pkgs/development/libraries/libpg_query/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, which }: 1 + { lib, stdenv, fetchFromGitHub, which, squawk }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libpg_query"; 5 - version = "15-4.2.1"; 5 + version = "15-4.2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "pganalyze"; 9 9 repo = "libpg_query"; 10 10 rev = version; 11 - hash = "sha256-wbWW2r8Ai4Y+JBI5DbMuVx326bAxmEgQlTd6nnzqDXw="; 11 + hash = "sha256-DjpfJj7WtQ4bACX8/lFDl+mwQGbeCJX+YN2hjZa0kks="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ which ]; ··· 24 24 doCheck = true; 25 25 checkTarget = "test"; 26 26 27 + passthru.tests = { 28 + inherit squawk; 29 + }; 30 + 27 31 meta = with lib; { 28 32 homepage = "https://github.com/pganalyze/libpg_query"; 29 33 description = "C library for accessing the PostgreSQL parser outside of the server environment"; 30 - changelog = "https://github.com/pganalyze/libpg_query/raw/${version}/CHANGELOG.md"; 34 + changelog = "https://github.com/pganalyze/libpg_query/blob/${version}/CHANGELOG.md"; 31 35 license = licenses.bsd3; 32 36 platforms = platforms.unix; 33 37 maintainers = [ maintainers.marsam ];