Commit Graph

33920 Commits

Author SHA1 Message Date
Patka
c4e1ffb96b
engelsystem: 3.4.1 -> 3.5.0
Release notes: https://github.com/engelsystem/engelsystem/releases/tag/v3.5.0
2024-03-17 12:24:29 +01:00
Maximilian Bosch
6af7e814af
Merge pull request #292993 from wolfgangwalther/postgresql-refactor
postgresql: refactor and cleanup
2024-03-17 10:00:07 +00:00
R. RyanTM
d0f89e785e
klipper: unstable-2024-02-17 -> unstable-2024-03-15 (#296574) 2024-03-17 13:48:14 +04:00
Maximilian Bosch
1bfeb2ddc6
Merge pull request #296413 from r-ryantm/auto-update/mautrix-whatsapp
mautrix-whatsapp: 0.10.5 -> 0.10.6
2024-03-17 09:39:53 +00:00
Weijia Wang
33a412ea5d
Merge pull request #294606 from r-ryantm/auto-update/bililiverecorder
bililiverecorder: 2.10.1 -> 2.11.0
2024-03-17 01:25:40 +01:00
Weijia Wang
f60bb3f994
Merge pull request #294621 from r-ryantm/auto-update/mox
mox: 0.0.9 -> 0.0.10
2024-03-17 01:23:43 +01:00
Martin Weinelt
5a4c4d2c40
Merge pull request #295983 from NixOS/home-assistant
home-assistant: 2024.3.0 -> 2024.3.1
2024-03-17 01:06:24 +01:00
Robert Scott
41c8713b58
Merge pull request #296229 from NickCao/pdns
pdns: 4.8.4 -> 4.9.0
2024-03-16 20:05:10 +00:00
Nick Cao
0537bbd042
pdns: 4.8.4 -> 4.9.0
Changelog: https://doc.powerdns.com/authoritative/changelog/4.9.html#change-4.9.0
Upgrade Notes: https://doc.powerdns.com/authoritative/upgrading.html#to-4-9-0
2024-03-16 12:09:08 -07:00
Nick Cao
43c14122b3
Merge pull request #296319 from emilylange/laurel
laurel: 0.6.0 -> 0.6.1
2024-03-16 11:43:55 -07:00
K900
ad704ecadd
Merge pull request #222640 from r-ryantm/auto-update/sonarr
sonarr: 4.0.1.929 -> 4.0.2.1183
2024-03-16 21:13:17 +03:00
Yt
cfabb44c02
Merge pull request #296432 from r-ryantm/auto-update/redpanda-client
redpanda-client: 23.3.7 -> 23.3.8
2024-03-16 17:26:21 +00:00
Maximilian Bosch
b08f1925bd
Merge pull request #292997 from Ma27/grafana-subpackages
grafana: 10.3.3 -> 10.4.0, explicitly declare subPackages, halve build time, reduce closure size by ~11.5%
2024-03-16 16:40:58 +00:00
Mario Rodas
f819b21e89
Merge pull request #295393 from r-ryantm/auto-update/minio
minio: 2024-03-07T00-43-48Z -> 2024-03-10T02-53-48Z
2024-03-16 10:02:00 -05:00
R. Ryantm
102f7b22eb redpanda-client: 23.3.7 -> 23.3.8 2024-03-16 14:31:59 +00:00
R. Ryantm
7d8ce14443 mautrix-whatsapp: 0.10.5 -> 0.10.6 2024-03-16 13:18:53 +00:00
9R
2f14590233
home-assistant-custom-components.moonraker: init at v1.1.1 (#296366) 2024-03-16 13:37:58 +01:00
9R
cfa2922e6b
home-assistant0-custom-components.epex_spot: init at v2.3.5 (#296362) 2024-03-16 13:35:24 +01:00
Martin Weinelt
5203b55f59
Merge pull request #293121 from r-ryantm/auto-update/prometheus-smartctl-exporter
prometheus-smartctl-exporter: 0.11.0 -> 0.12.0
2024-03-16 13:19:25 +01:00
Wolfgang Walther
01444957ba
postgresql: explain use of fetchurl for alpine patches 2024-03-16 11:52:39 +01:00
emilylange
56be60c27b
laurel: 0.6.0 -> 0.6.1
https://github.com/threathunters-io/laurel/releases/tag/v0.6.1

diff: https://github.com/threathunters-io/laurel/compare/v0.6.0...v0.6.1
2024-03-16 03:28:30 +01:00
Wolfgang Walther
e6bfabf366
postgresql: rename enableSystemd to systemdSupport for consistency
We have gssSupport, jitSupport and pythonSupport - but enableSystemd?

Across nixpkgs there are currently three styles commonly used, about equally
often: withX, xSupport and enableX.

Let's at least use one consistent style in this package.
2024-03-15 21:11:10 +01:00
Wolfgang Walther
d7ae1c5143
postgresql: refactor to remove doInstallCheck = false
This is the default anyway.
2024-03-15 21:11:09 +01:00
Wolfgang Walther
4b6bce5c31
postgresql: refactor to remove "this" argument
This was proposed by abbradar in #150801, but left out of the follow up PR
#221851 by Ma27 to reduce the size of the diff. Compared to the initial
proposal this includes the callPackage call in the recursion, which avoids
breaking the withJIT/withoutJIT helpers.

In terms of nixpkgs, this is a pure refactor, no derivations change. However,
this makes downstream expressions like the following possible:

  (postgresql.override { jitSupport = true; }).pkgs.postgis

This would have not worked before without passing another "this" argument,
which is error prone as can be seen in this example:

  https://github.com/PostgREST/postgrest/pull/3222/files
2024-03-15 21:11:09 +01:00
Wolfgang Walther
14b3ea2789
postgresql: refactor to pass jitSupport/llvm via scope instead of passthru
This makes it less error-prone to use the llvm package in extensions, because
it will always match the package used by the postgresql derivation itself.

Previously, you could've accidentally used llvm instead of postgresql.llvm
with a different result.
2024-03-15 21:11:09 +01:00
Wolfgang Walther
b301c01e31
postgresql: refactor to move musl patches into versioned .nix files
This makes it obvious that the required argument muslPatches must be passed when
creating a new version file.

Pure refactor, not changing any derivations.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
82e6c4a609
postgresql: refactor to remove psqlSchema argument
The passthru attribute is still set, but automatically created from
the major version number. Fewer moving parts decrease the chance
for mistakes.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
a92a323a1d
postgresql: refactor to remove passthru's readline attribute
This seems to have been introduced 20 years ago in 5863d4f - but
seems to have been a copy&paste mistake from the beginning.
AFAICT, it's not used anywhere.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
62635c9643
postgresql: refactor mkPackages in default.nix
Refactors some low hanging fruit in default.nix to make it easier to add new
versions later on.

Pure refactor, not changing any derivations.

This change makes it easier to add new versions in default.nix without messing
up - and also prevents us from adding version-specific arguments in default.nix
by accident in the future. Those should be put in the versioned .nix files
instead.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
1d9f2bd726
postgresql: refactor to split up default.nix (2/2)
The recommended [1] structure for a package regarding versioning is to have each
version in a separate file. This commit just mechanically copies code around
without any changes.

Pure refactor, not changing any derivations.

[1]: pkgs/README.md
2024-03-15 18:51:02 +01:00
Wolfgang Walther
9af8c0a3b7
postgresql: refactor to split up default.nix (1/2)
This just renames default.nix to generic.nix, because the biggest chunk
of code should move that way in the next commit. This gives us a much
better diff for the next commit and makes rebasing **much** easier in
case of changes. This commit does not stand on its own and needs to go
in with the next commit (2/2).
2024-03-15 18:51:02 +01:00
Wolfgang Walther
4c8e7af941
postgresql: refactor to remove useless references to "self"
No need to reference self here, because llvmPackages / stdenv' are available
in that scope anyway. Pure refactor, derivations don't change.
2024-03-15 18:51:02 +01:00
Wolfgang Walther
719034f6f6
postgresql: refactor to move packages.nix to ext/default.nix (2/2)
This aligns more with the commonly used style in nixpkgs.
2024-03-15 18:51:01 +01:00
Wolfgang Walther
9ef7195e08
postgresql: refactor to move packages.nix to ext/default.nix (1/2)
This commit is split up into two commits to allow git to detect renames,
make rebasing easier and allow a working entry in .git-blame-ignore-revs.

To allow bisecting we allow evaluation on every commit by moving the extensions
into ext/ext/ first and back to ext/ with the next commit.
2024-03-15 18:50:20 +01:00
Wolfgang Walther
01463448be
postgresql: refactor to move locale-binary-path.patch into patches/
Seems to have been put in the wrong place.
2024-03-15 18:50:19 +01:00
Maximilian Bosch
bd55d69cc0
grafana: clean up
We're currently not executing any tests by specifying `subPackages`
explicitly. If we go back to doing that, this can be reverted, but for
now it's just dead code.
2024-03-15 17:42:51 +01:00
Maximilian Bosch
66dece7b0e
grafana: 10.3.4 -> 10.4.0
ChangeLog: https://github.com/grafana/grafana/releases/tag/v10.4.0
2024-03-15 17:42:47 +01:00
Maximilian Bosch
1fab653a34
grafana: explicitly declare subPackages
The build itself is pretty quick now:

    buildPhase completed in 2 minutes 46 seconds

in contrast to

    buildPhase completed in 5 minutes 22 seconds

before on the same machine (Hetzner AX41 NVMe with
AMD Ryzen 5 3600 6-Core Processor and 64GiB RAM).

Downside of that is that no tests are now executed, but I'm inclined to
make that sacrifice for now. Especially considering that a fix for that
is on the horizon with #284568.
2024-03-15 17:42:02 +01:00
Maximilian Bosch
fe36ef0d1e
Merge pull request #294020 from r-ryantm/auto-update/grafana
grafana: 10.3.3 -> 10.3.4, fix CVE-2024-1442
2024-03-15 16:41:36 +00:00
Mario Rodas
0c8ba6990c
Merge pull request #296150 from r-ryantm/auto-update/postgresqlJitPackages.plpgsql_check
postgresqlJitPackages.plpgsql_check: 2.7.3 -> 2.7.4

Closes https://github.com/NixOS/nixpkgs/pull/296149
Closes https://github.com/NixOS/nixpkgs/pull/296151
Closes https://github.com/NixOS/nixpkgs/pull/296153
Closes https://github.com/NixOS/nixpkgs/pull/296154
2024-03-15 09:29:09 -05:00
Bernardo Meurer
8444643453
Merge pull request #295971 from danielmain/master 2024-03-15 10:25:55 -04:00
Emily
20369b5329
Merge pull request #296045 from emilylange/grafana-agent
grafana-agent: 0.40.2 -> 0.40.3
2024-03-15 15:16:01 +01:00
9R
8cac26901a
home-assistant custom component omnik_inverter: init at v2.6.4 (#296085) 2024-03-15 15:01:40 +01:00
R. Ryantm
dddd27dc94 postgresqlJitPackages.plpgsql_check: 2.7.3 -> 2.7.4 2024-03-15 13:32:48 +00:00
Jon Seager
e121b2285a
Merge pull request #295989 from r-ryantm/auto-update/pomerium
pomerium: 0.25.0 -> 0.25.1
2024-03-15 11:43:35 +00:00
Yt
431fd13c27
Merge pull request #296033 from r-ryantm/auto-update/pict-rs
pict-rs: 0.5.7 -> 0.5.9
2024-03-15 08:28:13 +00:00
Mario Rodas
ce26026241
Merge pull request #296002 from anthonyroussel/jetty-upgrade
jetty_12: 12.0.5 -> 12.0.7, jetty_11: 11.0.19 -> 11.0.20
2024-03-15 01:52:09 -05:00
emilylange
5c4bfdd5d8
grafana-agent: 0.40.2 -> 0.40.3
Beginning with 0.40.3, grafana-agent now requires at least go 1.22 to build.

https://github.com/grafana/agent/releases/tag/v0.40.3

https://github.com/grafana/agent/blob/v0.40.3/CHANGELOG.md

diff: https://github.com/grafana/agent/compare/v0.40.2...v0.40.3
2024-03-15 03:18:37 +01:00
Mario Rodas
e6aefe20a1
Merge pull request #292533 from flyingcircusio/init-postgresql-anonymizer
postgresqlPackages.anonymizer: init at 1.3.1; add me & osnyx to flyingcircus team
2024-03-14 20:53:36 -05:00
R. Ryantm
6d73040cb4 pict-rs: 0.5.7 -> 0.5.9 2024-03-15 00:56:22 +00:00