Maximilian Bosch
f81b05ab46
prometheus-backbox-exporter: correctly expose version info
2022-04-03 10:03:43 +02:00
7c6f434c
8188f10752
Merge pull request #166430 from alyssais/openssl-static-retry
...
treewide: use lib.getLib for OpenSSL libraries
2022-04-02 12:59:55 +00:00
Vladimír Čunát
474f700b19
Merge #166381 : knot-dns: 3.1.6 -> 3.1.7
2022-04-02 13:49:57 +02:00
Pascal Bach
65fa86e0d9
Merge pull request #165745 from r-ryantm/auto-update/matrix-synapse
...
matrix-synapse: 1.55.0 -> 1.55.2
2022-04-01 21:52:38 +02:00
Pascal Bach
b88a99ae9c
Merge pull request #166607 from Ma27/bump-grafana
...
grafana: 8.4.4 -> 8.4.5
2022-04-01 21:51:25 +02:00
Pascal Bach
6de9c93c5d
Merge pull request #166034 from r-ryantm/auto-update/tautulli
...
tautulli: 2.9.4 -> 2.9.5
2022-04-01 21:51:01 +02:00
adisbladis
9511feef72
prometheus-dmarc-exporter: Add missing build-system dependencies with overrides
...
I will add these upstream in poetry2nix and remove them from here once released.
2022-04-01 23:38:46 +12:00
Artturi
83063f39b2
Merge pull request #166780 from Artturin/removedeadddir
2022-04-01 11:10:12 +03:00
Artturin
34fd00a5b8
pkgs: remove dead dir
2022-04-01 10:33:51 +03:00
John Ericson
8dc7ebc9cb
Merge pull request #161177 from a-m-joseph/dante-mips64
...
dante: skip configure-time getaddrinfo-too-low check on mips64
2022-03-31 22:44:08 -04:00
Martin Weinelt
b58813a324
Merge pull request #166720 from mweinelt/mediawiki
2022-04-01 04:15:06 +02:00
Adam Joseph
aeb47faee2
dante: skip configure-time getaddrinfo-too-low check on mips64
...
This patch allows dante to be compiled (and cross-compiled) for mips64el.
Co-authored-by: John Ericson <git@JohnEricson.me>
2022-03-31 16:04:49 -07:00
Ryan Mulligan
29ac6896e4
Merge pull request #163083 from r-ryantm/auto-update/calibre-web
...
calibre-web: 0.6.16 -> 0.6.17
2022-03-31 15:04:05 -07:00
Martin Weinelt
1e2c1b8372
mediawiki: 1.37.1 -> 1.37.2
...
https://lists.wikimedia.org/hyperkitty/list/mediawiki-announce@lists.wikimedia.org/message/YJNXKPV5Z56NSUQ4G3SXPDUIZG5EQ7UR/
Fixes: CVE-2022-28202, CVE-2022-22801, CVE-2022-28203, CVE-2022-28204
2022-04-01 00:03:42 +02:00
Fabian Affolter
74cff65a06
Merge pull request #166474 from fabaff/voluptuous-bump
...
python3Packages.voluptuous: 0.12.2 -> 0.13.0
2022-03-31 21:20:15 +02:00
Maximilian Bosch
bab7f65636
grafana: 8.4.4 -> 8.4.5
...
ChangeLog: https://github.com/grafana/grafana/releases/tag/v8.4.5
2022-03-31 20:45:55 +02:00
Kerstin Humm
f44b12fb52
mastodon: use correct GitHub Url
...
The tootsuite organization was renamed to mastodon ages ago.
2022-03-31 13:17:11 +02:00
Kerstin Humm
513f7beb55
mastodon: 3.4.6 -> 3.5.0
...
Co-authored-by: Izorkin <izorkin@elven.pw>
2022-03-31 13:17:11 +02:00
Ben Siraphob
5187709ff7
Merge pull request #166508 from siraben/automake-buildinputs
2022-03-31 03:15:41 -05:00
Fabian Affolter
f1cc8d7cf4
home-assistant: add override for voluptuous
2022-03-31 09:27:25 +02:00
Ben Siraphob
21faf9fc29
treewide: move autoconf, automake to nativeBuildInputs
2022-03-30 20:17:24 -05:00
Martin Weinelt
a29d5b4cd2
Merge pull request #166479 from piegamesde/appservice-irc
2022-03-31 00:09:21 +02:00
piegames
ff133dcca8
matrix-appservice-irc: 0.32.1 → 0.33.1
2022-03-30 23:37:04 +02:00
Ember 'n0emis' Keske
313b1dc9d0
nixos/netbox: add nixos test
2022-03-30 22:24:34 +02:00
Ember 'n0emis' Keske
ce84aa3051
netbox: init at 3.1.10
2022-03-30 22:24:31 +02:00
Sandro
7c4f9e0e24
Merge pull request #161207 from Emantor/bump/xwayland
2022-03-30 17:34:32 +02:00
Alyssa Ross
fd78240ac8
treewide: use lib.getLib for OpenSSL libraries
...
At some point, I'd like to make another attempt at
71f1f4884b
("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07d
. One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries. This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.
This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching. The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.
I started by making the following global replacements:
${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
${openssl.out}/lib -> ${lib.getLib openssl}/lib
Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.
Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.
Then I manually investigated and fixed the following packages:
- pycurl
- citrix-workspace
- ppp
- wraith
- unbound
- gambit
- acl2
I'm reasonably confindent in my fixes for all of them.
For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all. Removing it doesn't make a difference to the output size, the
file list, or the closure.
I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-30 15:10:00 +00:00
Vladimír Čunát
2a5a99c586
knot-dns: 3.1.6 -> 3.1.7
...
This version primarily fixes incomplete implementation of
the Offline KSK signing mode in the IXFR and DDNS processing.
https://gitlab.nic.cz/knot/knot-dns/-/tags/v3.1.7
2022-03-30 10:23:34 +02:00
Sandro
c6360d9c11
Merge pull request #166146 from 5aaee9/master
2022-03-30 02:18:45 +02:00
Sandro
b5c32c6e45
Merge pull request #166123 from felschr/etebase-server
2022-03-30 02:15:15 +02:00
Bernardo Meurer
b77b6bca38
roon-bridge: 1.8-880 -> 1.8-918
2022-03-29 12:01:32 -07:00
Bernardo Meurer
fed59bdef3
roon-server: 1.8-903 -> 1.8-923
2022-03-29 11:55:29 -07:00
maxine [they]
3a1921f7ca
Merge pull request #166155 from r-ryantm/auto-update/traefik
...
traefik: 2.6.1 -> 2.6.2
2022-03-29 18:23:01 +02:00
pennae
64ead2ba7d
unifi7: 7.0.23 -> 7.0.25
2022-03-29 17:42:59 +02:00
Martin Weinelt
855e992a7a
Merge pull request #166251 from mweinelt/home-assistant
2022-03-29 17:02:02 +02:00
Sandro
f357391e75
Merge pull request #164732 from thevar1able/clickhouse
2022-03-29 16:31:31 +02:00
Martin Weinelt
b7e6749a32
home-assistant: 2022.3.7 -> 2022.3.8
...
https://github.com/home-assistant/core/releases/tag/2022.3.8
2022-03-29 16:09:34 +02:00
Martin Weinelt
8c5ec1e561
Merge pull request #166104 from mweinelt/pdns
2022-03-29 01:57:10 +02:00
R. Ryantm
d56a4c822c
traefik: 2.6.1 -> 2.6.2
2022-03-28 23:18:48 +00:00
5aaee9
f1a5d02990
teleport: fix suid exec problem
2022-03-29 04:22:18 +08:00
Fabian Affolter
221dfa0857
Merge pull request #165831 from r-ryantm/auto-update/check_ssl_cert
...
checkSSLCert: 2.22.0 -> 2.23.0
2022-03-28 21:08:57 +02:00
Felix Tenley
de188a2470
etebase-server: 0.7.0 -> 0.8.3
2022-03-28 20:29:41 +02:00
Martin Weinelt
999f3c2b9d
pdns: rename from powerdns
...
https://github.com/PowerDNS/pdns
https://repology.org/project/pdns/versions
2022-03-28 18:04:19 +02:00
Martin Weinelt
0165645499
Merge pull request #164116 from NickCao/powerdns
2022-03-28 17:34:07 +02:00
Konstantin Bogdanov
a8aaeb6e53
clickhouse 21.8.12.29 -> 22.3.2.2
2022-03-28 17:02:12 +02:00
Sandro
970a37ff47
Merge pull request #165962 from SuperSandro2000/bind
2022-03-28 16:34:13 +02:00
Nick Cao
fc49bc19ed
powerdns: redact configure flags from version output to reduce closure size
2022-03-28 22:05:39 +08:00
Nick Cao
e85e545dbd
powerdns: 4.3.1 -> 4.6.1
2022-03-28 22:05:31 +08:00
Sandro
7a0163c98e
Merge pull request #165183 from mausch/nominatim4
2022-03-28 13:28:19 +02:00
5aaee9
8aa41aeaea
teleport: fix exec srv command not found ( #165588 )
2022-03-28 13:27:12 +02:00