e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
{
|
|
buildPerlPackage,
|
|
bzip2,
|
|
fetchFromGitHub,
|
|
JSONXS,
|
|
lib,
|
|
nix-update-script,
|
|
pgbadger,
|
|
PodMarkdown,
|
|
shortenPerlShebang,
|
|
stdenv,
|
|
testers,
|
|
TextCSV_XS,
|
|
which,
|
|
}:
|
|
|
|
buildPerlPackage rec {
|
|
pname = "pgbadger";
|
|
version = "12.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "darold";
|
|
repo = "pgbadger";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-an/BOkQsMkTXS0HywV1JWerS16HRbO1MHVleYhVqmBM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs ./pgbadger
|
|
'';
|
|
|
|
# pgbadger has too many `-Idir` flags on its shebang line on Darwin,
|
|
# causing the build to fail when trying to generate the documentation.
|
|
# Rewrite the -I flags in `use lib` form.
|
|
preBuild = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
shortenPerlShebang ./pgbadger
|
|
'';
|
|
|
|
outputs = [ "out" ];
|
|
|
|
PERL_MM_OPT = "INSTALL_BASE=${placeholder "out"}";
|
|
|
|
buildInputs = [
|
|
JSONXS
|
|
PodMarkdown
|
|
TextCSV_XS
|
|
];
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ shortenPerlShebang ];
|
|
|
|
nativeCheckInputs = [
|
|
bzip2
|
|
which
|
|
];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
inherit version;
|
|
command = "${lib.getExe pgbadger} --version";
|
|
package = pgbadger;
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/darold/pgbadger";
|
|
description = "Fast PostgreSQL Log Analyzer";
|
|
changelog = "https://github.com/darold/pgbadger/raw/v${version}/ChangeLog";
|
|
license = lib.licenses.postgresql;
|
|
maintainers = lib.teams.determinatesystems.members;
|
|
mainProgram = "pgbadger";
|
|
};
|
|
}
|