postgresqlPackages.plpgsql_check: 2.3.4 -> 2.4.0

Diff: https://github.com/okbob/plpgsql_check/compare/v2.3.4...v2.4.0

Changelog: https://github.com/okbob/plpgsql_check/releases/tag/v2.4.0
This commit is contained in:
Mario Rodas 2023-08-21 04:20:00 +00:00
parent a913a5cc86
commit ce3b2a7683

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "plpgsql_check";
version = "2.3.4";
version = "2.4.0";
src = fetchFromGitHub {
owner = "okbob";
repo = pname;
rev = "v${version}";
hash = "sha256-kXci/4o7rK1CiLp8alkAGMhxjiQBIPpavS/1/7BBWI8=";
hash = "sha256-flRkPyHLc/cf+JQK04/Vl0I6ILx1GxWYMy9FnT9M//Q=";
};
buildInputs = [ postgresql ];
@ -22,8 +22,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Linter tool for language PL/pgSQL";
homepage = "https://github.com/okbob/plpgsql_check";
changelog = "https://github.com/okbob/plpgsql_check/releases/tag/v${version}";
platforms = postgresql.meta.platforms;
license = licenses.mit;
broken = versionOlder postgresql.version "12";
maintainers = [ maintainers.marsam ];
};
}