Commit Graph

26 Commits

Author SHA1 Message Date
Wolfgang Walther
a4ecf30715 postgresqlPackages.{age,pg_hint_plan,pg_safeupdate,pgaudit}: remove obsolete package versions for PG 13
PG 13 has been dropped from Nixpkgs for a while.
2026-06-27 15:26:49 +02:00
Daniel Beecham
c61954199e postgresqlPackages.age: 1.6.0 -> 1.7.0 2026-05-05 17:34:49 +02:00
jopejoe1
01238f33ac postgresql{16,17}Packages.age: 1.5.0-rc0 -> 1.6.0-rc0 2025-10-13 09:40:54 +02:00
jopejoe1
4dc17c928d postgresqlPackages.age: fix evaling of meta
In cases where src was a throw, meta failed to eval fixing this by not referencing src in meta.
2025-10-13 09:40:53 +02:00
jopejoe1
e33e1eb73e postgresqlPackages.age: fix src tag 2025-10-12 19:47:59 +02:00
Wolfgang Walther
052547291e postgresqlPackages: use finalAttrs pattern where possible 2025-04-12 21:10:55 +02:00
Wolfgang Walther
72b8186ff7 postgresqlPackages: rename buildPostgresqlExtension to postgresqlBuildExtension
This is for consistency with postgresqlTestExtension and
postgresqlTestHook. Everything that is passed via postgresql's
generic.nix "packages scope" now is prefixed with "postgresql".
2025-03-18 18:17:24 +01:00
Wolfgang Walther
783eaa5d91 postgresqlPackages.age: remove hash for v12
v12 had been removed from nixpkgs a while ago.
2025-03-17 19:09:34 +01:00
Wolfgang Walther
c982a346b5 postgresqlPackages.age: modernize 2025-03-17 19:09:33 +01:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Wolfgang Walther
68254e438c postgresqlPackages: enable update scripts by default
This enables update scripts via buildPostgresqlExtension. Extensions
must actively opt-out, if they don't support either the default
configuration or the unstable configuration.

To make the update script work, some extensions had to be changed to
pull their code from GitHub instead. Those with PostgreSQL-style version
tags (REL_X_Y) had to be changed to make src.rev the source of truth.
2024-11-16 13:09:35 +01:00
Wolfgang Walther
e24121ec20 postgresqlPackages: replace custom installPhase with buildPostgresqlExtension helper 2024-10-29 09:55:20 +01:00
Wolfgang Walther
203af243af postgresql17Packages: mark remaining extensions as broken
Those extensions don't support building with PostgreSQL 17, yet.

To make sure they will show up as build failures after the next package
upgrade, they all have version checks for their own package version
included.
2024-10-27 08:35:47 +01:00
Wolfgang Walther
050689db30 treewide: fix pg_config / postgresql headers moved to dev output
This was supposed to happen in #294504, but the commit was accidentally
left out when splitting off some libpq-related changes. Originated in
#179962, by Sandro.

Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2024-08-24 15:44:10 +02:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Mario Rodas
f5be670672 postgresql12Packages.age,postgresql13Packages.age,postgresql14Packages.age,postgresql15Packages.age,postgresql16Packages.age: 1.4.0-rc0 -> 1.5.0-rc0 2024-01-12 04:20:00 +00:00
Maximilian Bosch
6d82eb7753 postgresqlPackages: remove compat with postgresql_11 2023-10-30 14:26:44 +01:00
Mario Rodas
cf5cea07bd postgresqlPackages.age: support more PostgreSQL versions 2023-10-03 04:20:00 +00:00
Mario Rodas
16074f96ce postgresql11Packages.age: 1.0.0-rc1 -> 1.1.0-rc0
https://github.com/apache/age/releases/tag/v1.1.0-rc0
2022-09-13 04:20:00 +00:00
Mario Rodas
260542c946 postgresql11Packages.age: 0.6.0 -> 1.0.0-rc1 2022-07-16 04:20:00 +00:00
Rick van Schijndel
033d5579c2 treewide: pkgs/servers/sql: mark 2 psql extension broken 2022-05-30 13:42:58 +02:00
Mario Rodas
45c04e261c postgresql11Packages.age: 0.2.0 -> 0.6.0 2021-10-01 04:20:00 +00:00
Daniël de Kok
6f2ce2a65e treewide: remove danieldk as maintainer from a set of packages
I currently do not have much time to work on nixpkgs. Remove
myself as a maintainer from a bunch of packages to avoid that
people are waiting on me for a review.
2021-09-12 14:42:12 +00:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Daniël de Kok
58ba6ca2fe postgresqlPackages.age: init at 0.2.0
Apache AGE is an extension of PostgreSQL that provides an
implementation of the openCypher query language.
2020-08-22 20:16:30 +02:00