Commit Graph

452996 Commits

Author SHA1 Message Date
Nick Cao
76b01c4302
Merge pull request #215465 from r-ryantm/auto-update/libreddit
libreddit: 0.28.1 -> 0.29.0
2023-02-09 17:22:37 +08:00
Erik Arvstedt
8720c907ca
nbxplorer: 2.3.57 -> 2.3.60 2023-02-09 10:22:30 +01:00
R. Ryantm
eaa48b8280 gosec: 2.14.0 -> 2.15.0 2023-02-09 09:16:50 +00:00
R. Ryantm
7069b96b91 pscale: 0.128.0 -> 0.129.0 2023-02-09 09:15:27 +00:00
R. Ryantm
679e64a561 tinyfecvpn: 20210116.0 -> 20230206.0 2023-02-09 09:05:12 +00:00
R. Ryantm
997b955af1 drill: 0.8.1 -> 0.8.2 2023-02-09 09:04:26 +00:00
Jairo Llopis
7cf8b72ddd
k3s_1_23: 1.23.6+k3s1 -> 1.23.16+k3s1
- Update to latest upstream release.
- Include some changes from 0f9165d8b6 to fix downloads.
- Add myself as maintainer.

@moduon MT-1718
2023-02-09 09:04:20 +00:00
R. Ryantm
387480930b praat: 6.3.06 -> 6.3.07 2023-02-09 08:54:43 +00:00
R. Ryantm
d67c93762e libreddit: 0.28.1 -> 0.29.0 2023-02-09 08:30:56 +00:00
Weijia Wang
4777331203
Merge pull request #206668 from r-ryantm/auto-update/python310Packages.pyvmomi
python310Packages.pyvmomi: 8.0.0.1.1 -> 8.0.0.1.2
2023-02-09 09:25:49 +01:00
Weijia Wang
ebf14c089c
Merge pull request #215371 from r-ryantm/auto-update/snappymail
snappymail: 2.25.2 -> 2.25.3
2023-02-09 09:21:29 +01:00
Weijia Wang
deba294d72
Merge pull request #215446 from r-ryantm/auto-update/afterburn
afterburn: 5.3.0 -> 5.4.0
2023-02-09 09:18:43 +01:00
Weijia Wang
c585c6b437
Merge pull request #215451 from r-ryantm/auto-update/cargo-insta
cargo-insta: 1.20.0 -> 1.26.0
2023-02-09 09:18:22 +01:00
zowoq
015188525a podman: 4.4.0 -> 4.4.1
https://github.com/containers/podman/releases/tag/v4.4.1
2023-02-09 18:14:35 +10:00
Weijia Wang
697c78634c
Merge pull request #215456 from wegank/afterburn-linux
afterburn: relax platforms
2023-02-09 09:13:37 +01:00
R. Ryantm
246a192a2d xrootd: 5.5.1 -> 5.5.2 2023-02-09 08:10:35 +00:00
Weijia Wang
a4642a47d8
Merge pull request #211115 from r-ryantm/auto-update/python310Packages.pypinyin
python310Packages.pypinyin: 0.47.1 -> 0.48.0
2023-02-09 09:10:13 +01:00
Weijia Wang
51e175195f
Merge pull request #211765 from r-ryantm/auto-update/python310Packages.types-dateutil
python310Packages.types-dateutil: 2.8.19.5 -> 2.8.19.6
2023-02-09 09:06:39 +01:00
Nick Cao
6fa2bfdf4d
Merge pull request #215110 from gador/pgadmin-use-pstgresqltesthook
pgadmin4-desktopmode: init at 6.19, pgadmin4: simplify tests
2023-02-09 16:05:44 +08:00
betaboon
1db7bd2880 skaffold: 2.0.4 -> 2.1.0 2023-02-09 09:02:04 +01:00
Weijia Wang
e3058e0e3f
Merge pull request #215427 from bbigras/anytype
anytype: 0.29.1 -> 0.30.0
2023-02-09 08:59:19 +01:00
R. Ryantm
4a0482687f glooctl: 1.13.5 -> 1.13.6 2023-02-09 07:58:57 +00:00
Weijia Wang
e004f773e7 afterburn: relax platforms 2023-02-09 08:41:01 +01:00
R. Ryantm
06c8e53438 reaper: 6.73 -> 6.75 2023-02-09 07:38:53 +00:00
Weijia Wang
5e5d7fb2ce
Merge pull request #215443 from tomhoule/backblaze-b2-3-7-0
backblaze-b2: 3.6.0 -> 3.7.0
2023-02-09 08:27:06 +01:00
Weijia Wang
cc229db7af
Merge pull request #215447 from wegank/draco-bump
draco: 1.5.5 -> 1.5.6
2023-02-09 08:26:42 +01:00
Florian Brandes
a380674d85
pgadmin4: add option to enable desktop mode
By default, pgadmin4 uses SERVER_MODE = True. This requires
access to system directories (e.g. /var/lib/pgadmin). There is
no easy way to change this mode during runtime. One has to change
or add config files withing pgadmin's directory structure to change it
or add a system-wide config file under `/etc/pgadmin`[1].

This isn't always easy to achive or may not be possible at all. For
those usecases this implements a switch in the pgadmin4 derivation and
adds a new top-level package `pgadmin4-desktopmode`. This builds in
DESKTOP MODE and allows the usage of pgadmin4 without the nixOS module
and without access to system-wide directories.

pgadmin4 module saves the configuration to /etc/pgadmin/config_system.py
pgadmin4-desktopmode tries to read that as well. This normally fails with
a PermissionError, as the config file is owned by the user of the pgadmin module.

With the check-system-config-dir.patch this will just throw a warning
but will continue and not read the file.

If we run pgadmin4-desktopmode as root
(something one really shouldn't do), it can read the config file and fail,
because of the wrong config for desktopmode.

[1]https://www.pgadmin.org/docs/pgadmin4/latest/config_py.html

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:19:05 +01:00
R. Ryantm
e892d33da3 cargo-insta: 1.20.0 -> 1.26.0 2023-02-09 07:07:42 +00:00
Florian Brandes
2b63943be4 nixosTests.pgadmin4-standalone: format
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:06:54 +01:00
Florian Brandes
e4488f5efe pgadmin4: move package tests back into the package
We test pgadmin in nixosTests, because it needs a running postgresql instance.
This is now unnecessary since we can do so in the package itself.

This reduces the complexity of pgadmin and removes the need for the extra
nixosTests.

Also setting SERVER_MODE in `pkg/pip/setup_pip.py` does not have any effect
on the final package, so we remove it.
In NixOS, we use the module, which expects SERVER_MODE to be true (which it defaults to).
In non-NixOS installations, we will need the directory /var/lib/pgadmin and /var/log/pgadmin

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2023-02-09 08:06:52 +01:00
Weijia Wang
5f8d2c444e
Merge pull request #215442 from r-ryantm/auto-update/tfswitch
tfswitch: 0.13.1300 -> 0.13.1308
2023-02-09 07:37:53 +01:00
Weijia Wang
b207e66483
Merge pull request #215444 from wegank/xmrig-darwin
xmrig: add darwin support
2023-02-09 07:37:27 +01:00
Weijia Wang
e3ba948321
Merge pull request #215344 from r-ryantm/auto-update/go-mockery
go-mockery: 2.16.0 -> 2.18.0
2023-02-09 07:36:47 +01:00
Weijia Wang
62a3db4220
Merge pull request #215346 from r-ryantm/auto-update/arkade
arkade: 0.8.60 -> 0.8.62
2023-02-09 07:35:24 +01:00
R. Ryantm
6fa50db065 htop: 3.2.1 -> 3.2.2 2023-02-09 06:33:52 +00:00
Weijia Wang
ae9fec2140 draco: 1.5.5 -> 1.5.6 2023-02-09 07:31:53 +01:00
R. Ryantm
d5196ae0eb afterburn: 5.3.0 -> 5.4.0 2023-02-09 06:17:58 +00:00
Weijia Wang
879ed0225d
Merge pull request #215403 from r-ryantm/auto-update/python310Packages.robotstatuschecker
python310Packages.robotstatuschecker: 2.1.0 -> 3.0.0
2023-02-09 07:15:53 +01:00
Weijia Wang
2fecbe8f03
Merge pull request #215352 from r-ryantm/auto-update/kubernetes-controller-tools
kubernetes-controller-tools: 0.11.2 -> 0.11.3
2023-02-09 07:10:52 +01:00
7c6f434c
849593d42f
Merge pull request #214362 from r-ryantm/auto-update/python310Packages.flask-babel
python310Packages.flask-babel: 3.0.0 -> 3.0.1
2023-02-09 06:04:12 +00:00
Weijia Wang
910b85f2ae
Merge pull request #215388 from r-ryantm/auto-update/ffuf
ffuf: 1.5.0 -> 2.0.0
2023-02-09 06:59:50 +01:00
Nick Cao
aef8797863
Merge pull request #215345 from Izorkin/fix-coredump-id
nixos/systemd-coredump: fix group id
2023-02-09 13:52:05 +08:00
Weijia Wang
4c4184ef92 xmrig: add darwin support 2023-02-09 06:51:55 +01:00
Tom Houlé
a15990c061 backblaze-b2: 3.6.0 -> 3.7.0 2023-02-09 06:46:14 +01:00
Tom Houlé
2aaffd2a75 pythonPackages.b2sdk: 1.18.0 -> 1.19.0
The new ignored tests rely on network access.
2023-02-09 06:46:14 +01:00
Nick Cao
fba0eaef41
Merge pull request #215441 from wegank/ligolo-ng-bump
ligolo-ng: 0.4.2 -> 0.4.3
2023-02-09 13:37:58 +08:00
Weijia Wang
59ec2e613f
Merge pull request #215363 from r-ryantm/auto-update/xmrig
xmrig: 6.18.1 -> 6.19.0
2023-02-09 06:33:21 +01:00
Weijia Wang
e76b4fed8a
Merge pull request #215440 from r-ryantm/auto-update/subnetcalc
subnetcalc: 2.4.20 -> 2.4.21
2023-02-09 06:26:34 +01:00
Weijia Wang
b4ce585576
Merge pull request #215351 from wegank/gss-bump
gss: 1.0.3 -> 1.0.4
2023-02-09 06:24:36 +01:00
R. Ryantm
5525cdd7b3 tfswitch: 0.13.1300 -> 0.13.1308 2023-02-09 05:13:10 +00:00