Commit Graph
578898 Commits
Author SHA1 Message Date
YayaandGitHub bc916a4dff element-{web,desktop}: 1.11.55 -> 1.11.57 (#285548)
https://github.com/element-hq/element-web/releases/tag/v1.11.57
https://github.com/element-hq/element-desktop/releases/tag/v1.11.57
2024-02-01 17:10:57 +01:00
AtemuandGitHub f38bca1ca5 Merge pull request #279677 from leona-ya/paperless-nltk
nixos/paperless: use nltk_data package as NLTK data source
2024-02-01 16:59:28 +01:00
2f61aff9ae doc: update dockerTools.exportImage content and use doc conventions (#283392)
* doc: update dockerTools.exportImage content and use doc conventions

* Apply suggestions from code review

Co-authored-by: Silvan Mosberger <github@infinisil.com>

---------

Co-authored-by: Silvan Mosberger <github@infinisil.com>
2024-02-01 16:54:26 +01:00
Thiago Kenji OkadaandGitHub 7d229be154 Merge pull request #285540 from JerrySM64/update-kernels
linuxKernel.kernels.linux_zen: 6.7.2-zen1 -> 6.7.3-zen1 ; linuxKernel.kernels.linux_lqx: 6.7.2-lqx1 -> 6.7.2-lqx2
2024-02-01 15:54:05 +00:00
Leona Maroni 6300f478e9 nixos/paperless: use nltk_data package as NLTK data source
nixos
2024-02-01 16:53:34 +01:00
Leona Maroni 3d195bb859 paperless-ngx: add passthru.nltkData
This is used in the NixOS module to build the NLTK data directory
2024-02-01 16:53:20 +01:00
Silvan MosbergerandGitHub 625f2cefb6 Merge pull request #284097 from cpick/doc-nixpkgs-unstable
doc: consistently use nixpkgs-unstable and "nixpkgs repository"
2024-02-01 16:52:32 +01:00
KerstinandGitHub 0634c49b64 Merge pull request #285558 from LeSuisse/mastodon-4.2.5
mastodon: 4.2.4 -> 4.2.5
2024-02-01 16:36:21 +01:00
Samuel AinsworthandGitHub 0e84c28d97 Merge pull request #285297 from GaetanLepage/tensordict
python311Packages.tensordict: 0.2.1 -> 0.3.0, python311Packages.torchrl: 0.2.1 -> 0.3.0
2024-02-01 10:28:25 -05:00
markuskowaandGitHub 4ecdf857f7 Merge pull request #285509 from sheepforce/tblite-dftd3
python3Packages.tblite: fix simple-dftd3 dependency passing
2024-02-01 16:06:19 +01:00
Thomas Gerbet 48bc814c7b mastodon: 4.2.4 -> 4.2.5
Fixes CVE-2024-23832

https://github.com/mastodon/mastodon/releases/tag/v4.2.5
2024-02-01 16:01:29 +01:00
Nick CaoandGitHub d1f044cb50 Merge pull request #285438 from r-ryantm/auto-update/containerd
containerd: 1.7.12 -> 1.7.13
2024-02-01 10:00:11 -05:00
Nick CaoandGitHub 2e2e164815 Merge pull request #285525 from fabaff/publicsuffixlist-bump
python311Packages.publicsuffixlist: 0.10.0.20240127 -> 0.10.0.20240201
2024-02-01 09:53:03 -05:00
Nick CaoandGitHub 96875b33af Merge pull request #285526 from fabaff/botocore-stubs-bump
python311Packages.botocore-stubs: 1.34.30 -> 1.34.32
2024-02-01 09:50:14 -05:00
Nick CaoandGitHub 51d0a2898b Merge pull request #285528 from r-ryantm/auto-update/python311Packages.django-reversion
python311Packages.django-reversion: 5.0.10 -> 5.0.12
2024-02-01 09:49:05 -05:00
Nick CaoandGitHub bed4cde077 Merge pull request #285532 from r-ryantm/auto-update/kdash
kdash: 0.5.0 -> 0.6.0
2024-02-01 09:48:03 -05:00
Nick CaoandGitHub 349333f05c Merge pull request #285537 from r-ryantm/auto-update/python311Packages.aiortm
python311Packages.aiortm: 0.8.9 -> 0.8.10
2024-02-01 09:47:27 -05:00
Nick CaoandGitHub 46c3e9dfd1 Merge pull request #285547 from r-ryantm/auto-update/pdm
pdm: 2.12.2 -> 2.12.3
2024-02-01 09:45:19 -05:00
Nick CaoandGitHub 23a4ccbd06 Merge pull request #285493 from r-ryantm/auto-update/zsh-forgit
zsh-forgit: 24.01.0 -> 24.02.0
2024-02-01 09:39:28 -05:00
Nick CaoandGitHub b9f025f8a4 Merge pull request #285494 from r-ryantm/auto-update/the-way
the-way: 0.20.2 -> 0.20.3
2024-02-01 09:38:02 -05:00
Nick CaoandGitHub 0a4afdee32 Merge pull request #285496 from r-ryantm/auto-update/kode-mono
kode-mono: 1.204 -> 1.205
2024-02-01 09:37:10 -05:00
Alyssa Ross b33fd42c30 pkgsMusl.spidermonkey: fix build on x86_64-linux
rustc 1.73.0 introduced a new x86_64-unikraft-linux-musl target.  This
triple is a bit of a lie — the kernel in this case is unikraft, which
isn't Linux, it just tries to be compatible with it.  But this
User-Agent-like string of a triple now exists, and with it comes some
fallout.

Spidermonkey asks rustc for the list of supported targets, then picks
the one that best matches the GNU triple it's building for, which in
the native case config.guess will say is x86_64-pc-linux-musl.  Prior
to rustc 1.73.0, all was well, because there was only one x86_64 musl
triple, but now there are two: x86_64-unknown-linux-musl, and
x86_64-unikraft-linux-musl, and neither of those are obviously closer
than the other to x86_64-pc-linux-musl to Spidermonkey's build system.
As a result, it can't decide which target to pass to rustc, and bails
out.

We can fix this by telling Spidermonkey what platform it should be
building for, rather than letting it guess, which previously we did
only when cross compiling.  This approach is already used in the
Firefox derivation (which is why it was not affected by the rustc
update), so it's been well tested already.

Closes: https://github.com/NixOS/nixpkgs/pull/266560
Closes: https://github.com/NixOS/nixpkgs/pull/282923
2024-02-01 15:36:20 +01:00
Nick CaoandGitHub ea81a2fe63 Merge pull request #285498 from r-ryantm/auto-update/kube-linter
kube-linter: 0.6.5 -> 0.6.7
2024-02-01 09:34:44 -05:00
Nick CaoandGitHub b7c3b180b5 Merge pull request #285499 from r-ryantm/auto-update/libcint
libcint: 6.1.1 -> 6.1.2
2024-02-01 09:34:20 -05:00
Nick CaoandGitHub 1e13ebe55a Merge pull request #285523 from r-ryantm/auto-update/python311Packages.pylgnetcast
python311Packages.pylgnetcast: 0.3.8 -> 0.3.9
2024-02-01 09:30:15 -05:00
Nick CaoandGitHub d7756b239a Merge pull request #285453 from r-ryantm/auto-update/fits-cloudctl
fits-cloudctl: 0.12.12 -> 0.12.13
2024-02-01 09:28:48 -05:00
Nick CaoandGitHub 73da221af9 Merge pull request #285454 from r-ryantm/auto-update/function-runner
function-runner: 4.1.0 -> 4.2.0
2024-02-01 09:28:31 -05:00
Nick CaoandGitHub 98e920af0a Merge pull request #285456 from r-ryantm/auto-update/gqlgenc
gqlgenc: 0.16.2 -> 0.17.0
2024-02-01 09:28:14 -05:00
Nick CaoandGitHub 8df42129ed Merge pull request #285459 from r-ryantm/auto-update/grpc_cli
grpc_cli: 1.60.0 -> 1.61.0
2024-02-01 09:27:47 -05:00
Nick CaoandGitHub 691815b098 Merge pull request #285468 from r-ryantm/auto-update/pure-maps
pure-maps: 3.2.0 -> 3.2.1
2024-02-01 09:27:19 -05:00
Nick CaoandGitHub 910b4859eb Merge pull request #285469 from r-ryantm/auto-update/python312Packages.types-docutils
python312Packages.types-docutils: 0.20.0.20240126 -> 0.20.0.20240201
2024-02-01 09:26:48 -05:00
Nick CaoandGitHub 8b30753bd6 Merge pull request #285480 from r-ryantm/auto-update/mutagen-compose
mutagen-compose: 0.17.4 -> 0.17.5
2024-02-01 09:25:47 -05:00
Nick CaoandGitHub 3ba183f022 Merge pull request #285483 from r-ryantm/auto-update/kube-bench
kube-bench: 0.7.0 -> 0.7.1
2024-02-01 09:24:54 -05:00
Nick CaoandGitHub 9de51e7848 Merge pull request #285492 from r-ryantm/auto-update/remote-touchpad
remote-touchpad: 1.4.4 -> 1.4.5
2024-02-01 09:23:29 -05:00
Nick CaoandGitHub fc518afb9f Merge pull request #285417 from r-ryantm/auto-update/detekt
detekt: 1.23.4 -> 1.23.5
2024-02-01 09:19:48 -05:00
Nick CaoandGitHub e01b301eca Merge pull request #285429 from r-ryantm/auto-update/haproxy
haproxy: 2.9.3 -> 2.9.4
2024-02-01 09:17:10 -05:00
Nick CaoandGitHub b4d02f031b Merge pull request #285430 from r-ryantm/auto-update/emplace
emplace: 1.4.2 -> 1.4.3
2024-02-01 09:15:50 -05:00
K900andGitHub f0c4b00dbe Merge pull request #282080 from toastal/purescript-main-programs
mainPrograms for misc. PureScript tooling
2024-02-01 17:15:16 +03:00
Nick CaoandGitHub e9840da147 Merge pull request #285442 from r-ryantm/auto-update/tippecanoe
tippecanoe: 2.41.2 -> 2.41.3
2024-02-01 09:13:41 -05:00
Nick CaoandGitHub f372665078 Merge pull request #285447 from r-ryantm/auto-update/python311Packages.sagemaker
python311Packages.sagemaker: 2.205.0 -> 2.206.0
2024-02-01 09:11:48 -05:00
SandroandGitHub 98c4ffeb6d Merge pull request #282352 from fabaff/types-setuptools-bump 2024-02-01 15:11:29 +01:00
Martin WeineltandGitHub 382cacc9ee Merge pull request #285536 from mweinelt/openvino-2023.3.0
openvino: 2023.0.0 -> 2023.3.0
2024-02-01 15:10:48 +01:00
Nick CaoandGitHub 8a3e75895a Merge pull request #285450 from r-ryantm/auto-update/automatic-timezoned
automatic-timezoned: 1.0.146 -> 1.0.147
2024-02-01 09:10:30 -05:00
Nick CaoandGitHub 18bcc88aab Merge pull request #285386 from SuperSandro2000/zigpy-znp
python311Packages.zigpy-znp: add pytest-xdist
2024-02-01 09:10:00 -05:00
Nick CaoandGitHub 1060a499d9 Merge pull request #285409 from r-ryantm/auto-update/slint-lsp
slint-lsp: 1.3.2 -> 1.4.0
2024-02-01 09:06:14 -05:00
Adam C. StephensandGitHub 496fd5cfba Merge pull request #284009 from adamcstephens/incus/0.5
incus-unwrapped: 0.4.0 -> 0.5.1
2024-02-01 09:00:21 -05:00
R. RyantmandYaya 8689b4897a zsh-fzf-tab: unstable-2023-06-11 -> unstable-2024-02-01 2024-02-01 14:59:35 +01:00
Nick CaoandGitHub 7a99d9e236 Merge pull request #285363 from buckley310/2024-01-31-brave
brave: 1.62.153 -> 1.62.156
2024-02-01 08:59:25 -05:00
Nick CaoandGitHub d6a79f123c Merge pull request #285367 from r-ryantm/auto-update/treesheets
treesheets: unstable-2024-01-26 -> unstable-2024-01-30
2024-02-01 08:58:11 -05:00
R. RyantmandYaya 63c3893633 boxed-cpp: 1.2.0 -> 1.2.2 2024-02-01 14:57:59 +01:00