Commit Graph

1058993 Commits

Author SHA1 Message Date
nixpkgs-ci[bot]
d5f17dea23 free5gc-smf: 1.4.3 -> 1.4.5 (#552445) 2026-08-14 04:40:34 +00:00
nixpkgs-ci[bot]
50680271d3 free5gc-bsf: 1.0.2 -> 1.0.4 (#552443) 2026-08-14 04:40:31 +00:00
nixpkgs-ci[bot]
cf3dcc9b6a free5gc-n3iwf: 1.3.3 -> 1.3.5 (#552440) 2026-08-14 04:40:30 +00:00
nixpkgs-ci[bot]
bb2462f360 free5gc-udm: 1.4.3 -> 1.4.5 (#552439) 2026-08-14 04:40:29 +00:00
nixpkgs-ci[bot]
d5be1909ba free5gc-amf: 1.4.3 -> 1.4.5 (#552438) 2026-08-14 04:40:28 +00:00
nixpkgs-ci[bot]
75558e4e6d free5gc-nef: 1.2.3 -> 1.2.5 (#552437) 2026-08-14 04:40:26 +00:00
nixpkgs-ci[bot]
2a11469170 free5gc-udr: 1.4.3 -> 1.4.4 (#552436) 2026-08-14 04:40:25 +00:00
nixpkgs-ci[bot]
53aae8d544 free5gc-nrf: 1.4.3 -> 1.4.5 (#552433) 2026-08-14 04:40:24 +00:00
nixpkgs-ci[bot]
454327c2e6 free5gc-ausf: 1.4.3 -> 1.4.5 (#552431) 2026-08-14 04:40:23 +00:00
nixpkgs-ci[bot]
9c86008229 free5gc-pcf: 1.4.3 -> 1.4.5 (#552430) 2026-08-14 04:40:22 +00:00
nixpkgs-ci[bot]
42cfdf2df3 free5gc-chf: 1.2.3 -> 1.2.5 (#552428) 2026-08-14 04:40:21 +00:00
nixpkgs-ci[bot]
916b3d997b free5gc-nssf: 1.4.3 -> 1.4.5 (#552427) 2026-08-14 04:40:19 +00:00
R. Ryantm
b559ebc4a3 faugus-launcher: 2.0.6 -> 2.1.0 2026-08-14 04:39:10 +00:00
Ryan Hendrickson
e17aac9b0a legit-web: make package easier to customize (#540614) 2026-08-14 04:25:11 +00:00
Ihar Hrachyshka
5eaf424e4d poppler: fix mat2 build on Darwin by backporting upstream bugfix (#546126) 2026-08-14 04:03:31 +00:00
nixpkgs-ci[bot]
742cc47d86 openmeters: 1.12.0 -> 1.13.0 (#552499) 2026-08-14 04:01:12 +00:00
nixpkgs-ci[bot]
ef60c3fae8 pyright: 1.1.411 -> 1.1.412 (#552459) 2026-08-14 04:00:43 +00:00
Ihar Hrachyshka
58a38b9adb swift: strip -mtls-dialect=gnu2 from clang wrapper (#542332) 2026-08-14 03:56:48 +00:00
Konstantin Alekseev
51c9674b0e nixpkgs-openjdk-updater: ignore new lint failure
Ruff 0.16 enables CPY001 under the existing ALL rule selection. Ignore the copyright-notice rule because this project does not configure a required notice.

Assisted-by: Codex (GPT-5)
2026-08-14 06:55:26 +03:00
KangaZero
f472fcf419 flsmg: 4.0.23 -> 4.0.24
Added `versionCheckHook`
Added `patches` to include missing header file `pthread.h`. Without it
the build will fail with:
  > widgets/font_browser.cxx: In function 'void find_fonts()':
       > widgets/font_browser.cxx:391:13: error: 'pthread_create' was not de
       >   391 |         if (pthread_create(&find_font_thread, NULL, find_fi
       >       |             ^~~~~~~~~~~~~~
       >       |             pthread_t
       > make[2]: *** [Makefile:3513: widgets/flmsg-font_browser.o] Error 1
2026-08-14 12:37:27 +09:00
John Ericson
2a1d427bd9 gccNGPackages: Do not use vendored libbacktrace
- `gccNGPackages.libbacktrace`: Remove, in favor of the `libbacktrace`
  package in `pkgs/by-name`

- `stdenvNoCxx`: New, a compiler with a libc but no C++ standard library

- `libbacktrace`: Build with `stdenvNoCxx`, so `libstdc++` can link it
  without a cycle

- `gccNGPackages.gcc`, `gccNGPackages.libgfortran`,
  `gccNGPackages.libstdcxx`: Take `libbacktrace` as a build input and pass
  `--with-system-libbacktrace`

That option is not upstream; it comes from a patch posted to gcc-patches[^1],
which we fetch from the archive rather than vendor.

One posting covers every component that links libbacktrace, so each
package filters it down to the files its own `src` carries, and leaves
out the generated files because we regenerate those locally anyway.

`gcc` and `libgfortran` were already using this `libbacktrace`, but by
faking up the sibling directory an in-tree build would have had --
archive, libtool archive and headers -- for the relative paths to resolve
against. Passing the flag lets that go.

Note that this means our libstdc++ is getting `std::stacktrace` support
for the first time; we were unwittingly excluding the vendored support.
Nothing failed, which is why it went unnoticed:
`--enable-libstdcxx-backtrace` defaults to `auto`, and `auto` means yes
wherever the library is hosted, so the feature was asked for. But the
probe that picks the object format runs `libbacktrace/filetype.awk`,
which was not among the files we copied, so it got nothing back, warned
"could not determine output file type", and quietly settled on
`enable_libstdcxx_backtrace=no`.

Note also that with this approach, a downstream `libbacktrace`
*cannot* be built by the regular `stdenv` with `useGccNG = true`,
because its symbols would conflict. We'll see whether that is acceptable
or not. If it isn't, we can still avoid vendoring, but we will need to
replicate the symbol renaming that GCC would have done externally.

[^1]: https://inbox.sourceware.org/gcc-patches/20260814013206.3818461-1-git@JohnEricson.me/

Assisted-by: Claude Code (Claude Opus 5)
2026-08-13 23:18:53 -04:00
R. Ryantm
b3396e7483 python3Packages.aiohttp-socks: 0.11.0 -> 0.12.0 2026-08-14 03:04:49 +00:00
nixpkgs-ci[bot]
77ae70a688 nezha-agent: 2.3.1 -> 2.3.3 (#552502) 2026-08-14 03:02:30 +00:00
nixpkgs-ci[bot]
194ec02669 jsonschema-cli: 0.49.5 -> 0.49.9 (#552475) 2026-08-14 03:02:27 +00:00
Oleksii Filonenko
9cf7affea0 hk: 1.54.0 -> 1.55.0 (#552315) 2026-08-14 02:33:41 +00:00
R. Ryantm
96b1e13a76 nezha-agent: 2.3.1 -> 2.3.3 2026-08-14 02:27:43 +00:00
Yohann Boniface
db234fcb98 python3Packages.pebble: 5.2.0 -> 5.2.1 (#546303) 2026-08-14 02:15:09 +00:00
Sandro
a6aaf01afa govulncheck: 1.6.0 -> 1.7.0 (#552488) 2026-08-14 02:13:36 +00:00
nixpkgs-ci[bot]
3558fd344c glow: 2.1.2 -> 3.0.0 (#552205) 2026-08-14 02:01:09 +00:00
Yohann Boniface
ce68987e53 python3Packages.tuya-device-sharing-sdk: 0.2.13 -> 0.2.14 (#548083) 2026-08-14 01:59:50 +00:00
R. Ryantm
3ca0119845 grpc-health-probe: 0.4.54 -> 0.4.55 2026-08-14 01:58:47 +00:00
R. Ryantm
fc2a75efb3 git-wt: 0.29.0 -> 0.29.1 2026-08-14 01:52:20 +00:00
Yt
259d7ba540 python3Packages.huggingface-hub: 1.26.0 -> 1.27.0 (#552435) 2026-08-14 01:49:58 +00:00
Michael Daniels
a49d676407 python3Packages.langchain-core: 1.5.1 -> 1.5.4 (#549339) 2026-08-14 01:49:11 +00:00
R. Ryantm
ad5454020f openmeters: 1.12.0 -> 1.13.0 2026-08-14 01:46:45 +00:00
Palmer Cox
4e199bc1d3 rbdoom-3-bfg: Fix on Apple platforms
With version 1.6.0 the project started using ShaderMake. There was
already a patch in place to fix compiling on Apple platforms. It seems
that with 1.6.0, this patch needs to be modified to be applied to
ShaderMake.
2026-08-13 21:44:53 -04:00
Mio
4f1bd8e4ab openshot-qt: fix build, 3.5.1-unstable-2026-04-22 -> 3.5.1-unstable-2026-07-23 2026-08-14 11:32:18 +10:00
Sapphire
22fead9e5f wayvr: add me as maintainer 2026-08-13 20:31:30 -05:00
Sapphire
01dc282204 wayvr: patch uidev rpath so dlopen'd dependencies are found 2026-08-13 20:31:29 -05:00
Sapphire
95d30c22ff wayvr: fix xwayland-satellite executable path 2026-08-13 20:31:28 -05:00
Sapphire
2aea93e065 wayvr: 26.7.1 -> 26.8.0 2026-08-13 20:31:28 -05:00
Adam C. Stephens
0d7a694052 zfs_2_4: more backports (#552221) 2026-08-14 01:28:30 +00:00
nixpkgs-ci[bot]
1c21631155 intune-portal: 1.2605.16-noble -> 1.2607.4-noble (#550028) 2026-08-14 01:14:04 +00:00
Yohann Boniface
e09ea5c1f8 kalker: 2.2.2 -> 2.2.3 (#540370) 2026-08-14 01:13:55 +00:00
Yohann Boniface
480353356d typical: 0.15.0 -> 0.16.0 (#539826) 2026-08-14 01:13:12 +00:00
Yohann Boniface
188505b4cf python3Packages.mautrix: 0.21.0 -> 0.21.1 (#539677) 2026-08-14 01:12:51 +00:00
Yohann Boniface
64e24e34ec python3Packages.pyvmomi: 9.0.0.0 -> 9.1.0.0 (#537125) 2026-08-14 01:12:25 +00:00
R. Ryantm
d32733ca43 speakeasy-cli: 1.791.3 -> 1.793.1 2026-08-14 01:11:25 +00:00
Nick Cao
23bd985a77 python3Packages.textual-textarea: cleanup disabled tests (#549451) 2026-08-14 00:56:36 +00:00
zowoq
88fa39f7b6 terraform-providers.linode_linode: 4.2.0 -> 4.3.0 (#552476) 2026-08-14 00:54:55 +00:00