Commit Graph

524218 Commits

Author SHA1 Message Date
Emily
75b435f663
Merge pull request #254118 from networkException/update-chromium
chromium,ungoogled-chromium: 116.0.5845.140 -> 116.0.5845.179
2023-09-09 21:51:40 +02:00
Weijia Wang
120e9de3a4
Merge pull request #241277 from donovanglover/ironbar
ironbar: init at 0.13.0
2023-09-09 21:40:44 +02:00
happysalada
1ef7374323 python310Packages.qdrant-client: 1.1.0 -> 1.5.0 2023-09-09 19:39:46 +00:00
happysalada
db8fd375a5 python310Packages.fastembed: init at unstable-2023-09-07 2023-09-09 19:39:46 +00:00
Robert Schütz
5e56902294
Merge pull request #254116 from stiglers-eponym/update-beamerpresenter
beamerpresenter: 0.2.3 -> 0.2.4
2023-09-09 19:39:35 +00:00
Weijia Wang
e6fccd39a1
Merge pull request #254123 from nbraud/nixpkgs-update/nicoo
Set `passthru.updateScript` for nicoo's packages
2023-09-09 21:34:28 +02:00
Weijia Wang
7548f17e61
Merge pull request #254157 from kashw2/denaro
denaro: 2023.8.1 -> 2023.9.1
2023-09-09 21:27:58 +02:00
R. Ryantm
41c727bd02 go-task: 3.28.0 -> 3.29.1 2023-09-09 21:26:43 +02:00
Francesco Gazzetta
ceff36af31
Merge pull request #253985 from r-ryantm/auto-update/frugal
frugal: 3.16.24 -> 3.16.27
2023-09-09 19:25:52 +00:00
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
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
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
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
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
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
Jörg Thalheim
217407ff80 tts: fix patching pyproject constraints 2023-09-09 19:00:58 +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
Jade Lovelace
27b3d62211 nix-doc: 0.6.0 -> 0.6.2
NixCon edition: "wow these ctags could use to be sorted better". So they
now sort a = x first before inherit a;
2023-09-09 18:19:13 +02:00
sternenseemann
bd374243c0 npmHooks: use adjacent packages, not buildPackages
Hooks are essentially implemented as special shell packages that run on
their respective host platform. When they are used, they appear as
nativeBuildInputs (as they need to be executed as part of the build of a
package using them) so are taken from buildPackages relative to the
derivation using them.

Since the override in buildNpmPackage nullifies splicing, we take
npmHooks from buildPackages manually.

Fixes pkgsCross.ghcjs.buildPackages.emscripten and thus
pkgsCross.ghcjs.haskellPackages.ghc.
2023-09-09 17:55:37 +02:00
markuskowa
9f48070e89
Merge pull request #254173 from r-ryantm/auto-update/linuxptp
linuxptp: 4.0 -> 4.1
2023-09-09 17:33:52 +02:00
Janne Heß
6b8306c21c
Merge pull request #249643 from amarshall/networkd-reload
nixos/networkd: Reload (not restart) when only .network units change
2023-09-09 17:31:09 +02:00