Commit Graph

33 Commits

Author SHA1 Message Date
Aaron Andersen
334b8af3c3 zabbix: pcre -> pcre2 2026-05-30 14:21:52 -04:00
quantenzitrone
2226596501 unixodbc: refactor and rename from unixODBC
rename to lowercase to fit package naming conventions
2026-02-27 10:52:14 +01:00
SandaruKasa
f509f323ed zabbix: enableParallelBuilding 2025-09-09 01:29:00 +03:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
Florian Brandes
2867b465b5 zabbix: fix build for zabbix74
add conditional for pcre2 starting at version 7.4

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2025-07-15 14:12:09 +02:00
nixpkgs-ci[bot]
03db8f9dcb Merge staging-next into staging 2025-03-30 00:17:21 +00:00
bstanderline
666bcfd7a3 zabbix: add bstanderline as maintainer 2025-03-28 12:22:29 +00:00
Wolfgang Walther
88dfade94b postgresql: replace pg_config with custom script
By replacing upstream's pg_config binary with a shell script, we:
- gain the ability to run pg_config easily when cross-compiling,
- can remove the fake pg_config in the default output,
- can remove the pg_config wrapper script dealing with special cases.

Some 20 years ago, pg_config *was* a shell script upstream, too. It was
changed to a binary, when it was made "relocatable", so it would return
paths depending on the location of the "postgres" binary. However, this
is exactly the thing that just hurts us in nixpkgs - we don't want those
paths to change, we want them to always point at the right outputs. By
writing the script ourselves, this becomes a lot less painful.

This approach means more lines of codes, but all of them are dead simple
and we have a lot less complexity overall.

Additionally, pg_config is now made a separate derivation, only exposed
as "postgresql.pg_config". This has the nice side-effect, that all users
of postgresql and libpq in nixpkgs must be very *explicit* about their
dependency on pg_config. This gives a lot more visibility into the state
of affairs regarding pkg-config support for libpq, which ultimately is
the much better solution.
2025-03-21 18:05:38 +01:00
Rick van Schijndel
b064b7893b zabbix.proxy: add curl (#377287) 2025-03-09 11:22:46 +01:00
K900
af55d5afc2 Merge remote-tracking branch 'origin/master' into staging-next 2025-02-05 09:44:25 +03:00
Artturin
f1b5c37655 zabbix.proxy-{pgsql,mysql}: Fix cross 2025-01-28 22:49:02 +02:00
Yannick Markus
71bee16c30 zabbix.proxy: add curl 2025-01-27 12:42:19 +01:00
Wolfgang Walther
546ece569b libpq: init at 17.2
Resolves #61580
2025-01-19 12:49:21 +01:00
Florian Brandes
2da0ddc897 zabbix: format
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-08-13 17:56:12 +02:00
Florian Brandes
cb68f11dc5 zabbix: add 7.0 LTS version
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-08-13 17:55:06 +02: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
Jussi Kuokkanen
8064d28a4f pkgs/servers: remove licenses.gpl2 2024-05-23 11:49:42 +03:00
Thomas Gerbet
e2f81c0f30 zabbix50: 5.0.37 -> 5.0.41
Fixes CVE-2024-22119 / https://support.zabbix.com/browse/ZBX-24070

Changes:
https://www.zabbix.com/rn/rn5.0.41
https://www.zabbix.com/rn/rn5.0.40
https://www.zabbix.com/rn/rn5.0.39
https://www.zabbix.com/rn/rn5.0.38
2024-02-24 14:39:28 +01:00
Aaron Andersen
65ed4dd46c Merge pull request #223592 from seberm/add-zabbix-6
zabbix: Add support for zabbix v6, update v5 and v4 to latest versions
2023-04-05 20:28:15 -04:00
schnusch
a4fc9696da zabbix: move vendorSha256 to versions.nix 2022-11-07 09:37:39 +01:00
Nick Cao
44785549a7 zabbix.proxy-sqlite: fix cross compilation by setting AR and RANLIB, and
disabling snmp support
2022-08-20 16:03:04 +08:00
Aaron Andersen
8fa93e369a zabbix: enable ipv6 2021-12-15 10:53:48 -05:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob
872973d7d1 pkgs/servers: stdenv.lib -> lib 2021-01-15 14:24:03 +07: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
Aaron Andersen
c85f02ca4e zabbix: update source url 2020-05-13 20:19:50 -04:00
Aaron Andersen
9bc0b630ab zabbix: replace download source from sourceforge to zabbix.com 2020-05-07 08:24:35 -04:00
Jörg Thalheim
725f85e271 net-snmp: rename from net_snmp 2019-12-21 22:56:08 +00:00
Vladimír Čunát
22a216849b Re-Revert "Merge branch 'staging-next'"
This reverts commit f8a8fc6c7c.
2019-09-22 09:38:09 +02:00
Vladimír Čunát
f8a8fc6c7c Revert "Merge branch 'staging-next'"
This reverts commit 41af38f372, reversing
changes made to f0fec244ca.

Let's delay this.  We have some serious regressions.
2019-09-21 20:05:09 +02:00
Izorkin
329a88efa7 treewide: replace mysql.connector-c to libmysqlclient 2019-09-09 15:55:34 +03:00
Aaron Andersen
9af06755f3 nixos/zabbixProxy: fix database initialization logic 2019-08-13 18:50:28 -04:00
Aaron Andersen
9a4456fcc0 zabbix: zabbix.agent, zabbix.proxy-mysql, zabbix.proxy-pgsql, zabbix.proxy-sqlite, zabbix.server-mysql, zabbix.server-pgsql, zabbix.web: init at 3.0, 4.0, and 4.2 2019-07-11 18:37:02 -04:00