Commit Graph

524500 Commits

Author SHA1 Message Date
Francesco Gazzetta
88bd4c2622
Merge pull request #254000 from r-ryantm/auto-update/freerdpUnstable
freerdpUnstable: 2.11.0 -> 2.11.1
2023-09-09 19:23:15 +00:00
Joshua Suskalo
503a09114c wonderdraft: init at 1.1.7.3 2023-09-09 21:15:07 +02:00
Joshua Suskalo
094dea8d1f maintainers: add jsusk 2023-09-09 21:15:07 +02:00
schnusch
42deb69b51 xandikos: 0.2.8 -> 0.2.10
Diff: https://github.com/jelmer/xandikos/compare/v0.2.8...v0.2.10

Changelog: https://github.com/jelmer/xandikos/blob/v0.2.10/NEWS
2023-09-09 21:10:59 +02:00
Ulrik Strid
0f568acbef
Merge pull request #254003 from vbgl/ocaml-5.1.0
ocaml-ng.ocamlPackages_5_1.ocaml: init at 5.1.0-rc3
2023-09-09 21:04:17 +02:00
Yaya
abe4c2d003 gitlab: 16.3.1 -> 16.3.2
https://gitlab.com/gitlab-org/gitlab/-/blob/v16.3.2-ee/CHANGELOG.md
2023-09-09 20:59:33 +02:00
kilianar
bc5b1621a8 i3status-rust: 0.32.1 -> 0.32.2
https://github.com/greshake/i3status-rust/releases/tag/v0.32.2
2023-09-09 20:57:41 +02:00
Martin Weinelt
e07eca253b
Merge pull request #254170 from JamieMagee/anel-pwrctrl-homeassistant
python311Packages.anel-pwrctrl-homeassistant: init at 0.0.1.dev2
2023-09-09 20:53:37 +02:00
Donovan Glover
c8268da6d1 ironbar: init at 0.13.0
Co-authored-by: Yavor Kolev <yavornkolev@gmail.com>
2023-09-09 20:48:37 +02:00
Francesco Gazzetta
e72d1a3ac4
Merge pull request #253801 from fgaz/passes/init
passes: init at 0.8
2023-09-09 18:44:54 +00:00
Martin Weinelt
3eb4b5167b python310Packages.yangson: 1.4.16 -> 1.4.18 2023-09-09 20:37:43 +02:00
Fabian Affolter
a9906d685a
Merge pull request #254254 from fabaff/trueseeing-bump
trueseeing: 2.1.5 -> 2.1.7
2023-09-09 20:37:31 +02:00
Francesco Gazzetta
19aa8c95bd passes: init at 0.8 2023-09-09 20:30:01 +02:00
Brian McGee
848113c24f nats-server: add mainProgram for nats-server
The following warning was being output when using `nats-server`:

```
trace: warning: getExe: Package "nats-server-2.9.21" does not have the meta.mainProgram attribute. We'll assume that the main program has the same name for now, but this behavior is deprecated, because it leads to surprising errors when the assumption does not hold. If the package has a main program, please set `meta.mainProgram` in its definition to make this warning go away. Otherwise, if the package does not have a main program, or if you don't control its definition, use getExe' to specify the name to the program, such as lib.getExe' foo "bar".
```
2023-09-09 20:29:46 +02:00
Fabian Affolter
1270c985f1 python311Packages.checkdmarc: init at 4.8.0 2023-09-09 20:28:52 +02:00
Fabian Affolter
0258fb2552 python311Packages.pyleri: init at 1.4.2 2023-09-09 20:28:51 +02:00
Fabian Affolter
890fddf6d4 python311Packages.liccheck: init at 0.9.1 2023-09-09 20:27:49 +02:00
Janik
27eedb5601
Merge pull request #246201 from n0emis/zigbee2mqtt-groups-file 2023-09-09 20:19:50 +02:00
Martin Weinelt
9ad0b7b6cf
Merge pull request #238828 from mweinelt/wallabag-2.6.0
wallabag: 2.5.4 -> 2.6.6
2023-09-09 20:15:59 +02:00
Oliver Schmidt
e362fe9c6d security/acme: limit concurrent certificate generations
fixes #232505

Implements the new option `security.acme.maxConcurrentRenewals` to limit
the number of certificate generation (or renewal) jobs that can run in
parallel. This avoids overloading the system resources with many
certificates or running into acme registry rate limits and network
timeouts.

Architecture considerations:
- simplicity, lightweight: Concerns have been voiced about making this
  already rather complex module even more convoluted. Additionally,
  locking solutions shall not significantly increase performance and
  footprint of individual job runs.
  To accomodate these concerns, this solution is implemented purely in
  Nix, bash, and using the light-weight `flock` util. To reduce
  complexity, jobs are already assigned their lockfile slot at system
  build time instead of dynamic locking and retrying. This comes at the
  cost of not always maxing out the permitted concurrency at runtime.
- no stale locks: Limiting concurrency via locking mechanism is usually
  approached with semaphores. Unfortunately, both SysV as well as
  POSIX-Semaphores are *not* released when the process currently locking
  them is SIGKILLed. This poses the danger of stale locks staying around
  and certificate renewal being blocked from running altogether.
  `flock` locks though are released when the process holding the file
  descriptor of the lock file is KILLed or terminated.
- lockfile generation: Lock files could either be created at build time
  in the Nix store or at script runtime in a idempotent manner.
  While the latter would be simpler to achieve, we might exceed the number
  of permitted concurrent runs during a system switch: Already running
  jobs are still locked on the existing lock files, while jobs started
  after the system switch will acquire locks on freshly created files,
  not being blocked by the still running services.
  For this reason, locks are generated and managed at runtime in the
  shared state directory `/var/lib/locks/`.

nixos/security/acme: move locks to /run

also, move over permission and directory management to systemd-tmpfiles

nixos/security/acme: fix some linter remarks in my code

there are some remarks left for existing code, not touching that

nixos/security/acme: redesign script locking flow

- get rid of subshell
- provide function for wrapping scripts in a locked environment

nixos/acme: improve visibility of blocking on locks

nixos/acme: add smoke test for concurrency limitation

heavily inspired by m1cr0man

nixos/acme: release notes entry on new concurrency limits

nixos/acme: cleanup, clarifications
2023-09-09 20:13:18 +02:00
hexchen
084dfe801e obs-studio: add flag for decklink support 2023-09-09 19:45:50 +02:00
hexchen
08f93ba684 decklink: update to 12.5 2023-09-09 19:45:50 +02:00
hexchen
59271ebaa5 decklink: update to 12.2 2023-09-09 19:45:50 +02:00
hexchen
15db31b2d9 nixos/decklink: init 2023-09-09 19:45:50 +02:00
hexchen
517cf05cd7 blackmagicDesktopVideo: init at 12.0a14 2023-09-09 19:45:50 +02:00
hexchen
df68d342c9 linuxPackages.decklink: init at 12.0a14 2023-09-09 19:45:50 +02:00
Nick Cao
0b7160e88f
Merge pull request #254249 from figsoda/hack
cargo-hack: 0.6.5 -> 0.6.6
2023-09-09 13:44:46 -04:00
Nick Cao
10f8ec7852
Merge pull request #254237 from r-ryantm/auto-update/kubernetes-polaris
kubernetes-polaris: 8.5.0 -> 8.5.1
2023-09-09 13:43:47 -04:00
Nick Cao
f45cfd190a
Merge pull request #254248 from figsoda/typstfmt
typstfmt: 0.2.1 -> 0.2.2
2023-09-09 13:43:15 -04:00
Nick Cao
42d92bbbcc
Merge pull request #254245 from fabaff/python-roborock-bump
python311Packages.python-roborock: 0.32.4 -> 0.33.2
2023-09-09 13:42:44 -04:00
Weijia Wang
0409112162
Merge pull request #254270 from Mic92/fix-eval
camunda-modeler: fix eval
2023-09-09 19:41:41 +02:00
Jörg Thalheim
6c3d0cbadb camunda-modeler: fix eval
sorry!!!!
2023-09-09 19:40:27 +02:00
Martin Weinelt
0f9a86c000 wallabag: 2.5.4 -> 2.6.6
https://github.com/wallabag/wallabag/releases/tag/2.6.0
https://github.com/wallabag/wallabag/releases/tag/2.6.1
https://github.com/wallabag/wallabag/releases/tag/2.6.2
https://github.com/wallabag/wallabag/releases/tag/2.6.3
https://github.com/wallabag/wallabag/releases/tag/2.6.4
https://github.com/wallabag/wallabag/releases/tag/2.6.5
https://github.com/wallabag/wallabag/releases/tag/2.6.6

Dropped the swiftmailer patch, because wallabag migrated to symfony
mailer.

https://github.com/advisories/GHSA-p8gp-899c-jvq9
https://github.com/advisories/GHSA-gjvc-55fw-v6vq
https://github.com/wallabag/wallabag/pull/6924

Fixes: CVE-2023-4454, CVE-2023-4455
2023-09-09 19:38:11 +02:00
Ember Keske
96942dd1d5 camunda-modeler: init at 5.13.0 2023-09-09 19:36:33 +02:00
Leandro Reina
c439cbc78f python311Packages.dronecan: init at 1.0.25 2023-09-09 19:34:04 +02:00
Janik
1ffb4e592e
Merge pull request #249964 from ambroisie/woodpecker-improvements 2023-09-09 19:30:34 +02:00
ajs124
0a3aa06b53
Merge pull request #253739 from mweinelt/firefox-102-removal
firefox-esr-102-unwrapped: remove
2023-09-09 19:25:42 +02:00
R. Ryantm
edb68a2593 python310Packages.mypy-boto3-builder: 7.18.2 -> 7.19.0 2023-09-09 17:24:36 +00:00
Lassulus
b4f1091214
Merge pull request #252006 from ajs124/logrotate-extraParams 2023-09-09 19:12:20 +02:00
ajs124
f8df5ffdfe nixos/tt-rss: fix and significantly simplify database setup
the schema files referenced in the current preStart are empty.
other ones exist, but don't apply cleanly either.
calling update.php with --update-schema works for initial setup and
updates. if the database schema is already up to date, it's idempotent.
2023-09-09 19:11:54 +02:00
Janik
eda85eb31d
Merge pull request #251062 from ajs124/restic-wrapper-script 2023-09-09 19:11:33 +02:00
ajs124
8cc74ad049
Merge pull request #254232 from stigtsp/perl/remove-perldevel-throw
perldevel: add throwing alias
2023-09-09 19:09:29 +02:00
Lassulus
72160fbdc1
Merge pull request #251302 from Mic92/buildbot
nixos/buildbot: support reload, buildbot-www-react: init 3.9
2023-09-09 19:09:06 +02:00
Doron Behar
0c8177601d gotify-server: 2.2.4 -> 2.3.0
Diff: https://github.com/gotify/server/compare/v2.2.4...v2.3.0
2023-09-09 20:01:20 +03:00
Yureka
5761b7411e gotify: refactor, use nix-update 2023-09-09 20:01:20 +03:00
Jörg Thalheim
217407ff80 tts: fix patching pyproject constraints 2023-09-09 19:00:58 +02:00
Yaya
03103c590d gitlab-container-registry: 3.82.0 -> 3.83.0
https://gitlab.com/gitlab-org/container-registry/-/blob/v3.83.0-gitlab/CHANGELOG.md
2023-09-09 19:00:23 +02:00
Artturi
b3e16d6e10
Merge pull request #254166 from Artturin/fixthingy1 2023-09-09 19:56:02 +03:00
Yorick
df123af8b8
Merge pull request #248502 from kurnevsky/wstunnel
wstunnel: correct listen option
2023-09-09 18:45:45 +02:00
Yorick
42344dcc29
Merge pull request #254263 from lf-/jade/update-nix-doc
nix-doc: 0.6.0 -> 0.6.2
2023-09-09 18:38:30 +02:00