54 lines
2.0 KiB
Nix
54 lines
2.0 KiB
Nix
{ lib, stdenv, perlPackages, fetchFromGitHub, fetchpatch, shortenPerlShebang }:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "pgformatter";
|
|
version = "5.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darold";
|
|
repo = "pgFormatter";
|
|
rev = "v${version}";
|
|
hash = "sha256-4KtrsckO9Q9H0yIM0877YvWaDW02CQVAQiOKD919e9w=";
|
|
};
|
|
|
|
outputs = [ "out" ];
|
|
|
|
makeMakerFlags = [ "INSTALLDIRS=vendor" ];
|
|
|
|
# Avoid creating perllocal.pod, which contains a timestamp
|
|
installTargets = [ "pure_install" ];
|
|
|
|
patches = [
|
|
# Fix an uninitialized variable error. Remove with the next release.
|
|
(fetchpatch {
|
|
url = "https://github.com/darold/pgFormatter/commit/c2622c47d48cee47effecbf58a588c3cd3a7bf1a.patch";
|
|
sha256 = "sha256-WnQIOvfuzL2HrwtL0HaaYObrBxhXDu82jxGcqggQVhc=";
|
|
})
|
|
];
|
|
|
|
# Makefile.PL only accepts DESTDIR and INSTALLDIRS, but we need to set more to make this work for NixOS.
|
|
patchPhase = ''
|
|
substituteInPlace pg_format \
|
|
--replace "#!/usr/bin/env perl" "#!/usr/bin/perl"
|
|
substituteInPlace Makefile.PL \
|
|
--replace "'DESTDIR' => \$DESTDIR," "'DESTDIR' => '$out/'," \
|
|
--replace "'INSTALLDIRS' => \$INSTALLDIRS," "'INSTALLDIRS' => \$INSTALLDIRS, 'INSTALLVENDORLIB' => 'bin/lib', 'INSTALLVENDORBIN' => 'bin', 'INSTALLVENDORSCRIPT' => 'bin', 'INSTALLVENDORMAN1DIR' => 'share/man/man1', 'INSTALLVENDORMAN3DIR' => 'share/man/man3',"
|
|
'';
|
|
|
|
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
shortenPerlShebang $out/bin/pg_format
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A PostgreSQL SQL syntax beautifier that can work as a console program or as a CGI";
|
|
homepage = "https://github.com/darold/pgFormatter";
|
|
changelog = "https://github.com/darold/pgFormatter/releases/tag/v${version}";
|
|
maintainers = [ maintainers.marsam ];
|
|
license = [ licenses.postgresql licenses.artistic2 ];
|
|
mainProgram = "pg_format";
|
|
};
|
|
}
|