mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +00:00
ce3b2a7683
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
32 lines
879 B
Nix
32 lines
879 B
Nix
{ lib, stdenv, fetchFromGitHub, postgresql }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "plpgsql_check";
|
|
version = "2.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "okbob";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-flRkPyHLc/cf+JQK04/Vl0I6ILx1GxWYMy9FnT9M//Q=";
|
|
};
|
|
|
|
buildInputs = [ postgresql ];
|
|
|
|
installPhase = ''
|
|
install -D -t $out/lib *.so
|
|
install -D -t $out/share/postgresql/extension *.sql
|
|
install -D -t $out/share/postgresql/extension *.control
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|