Commit Graph

553621 Commits

Author SHA1 Message Date
Adam C. Stephens
45827faa21
Merge pull request #269097 from amarshall/zfs-221
zfs: 2.2.0 -> 2.2.1; zfsUnstable: 2.2.1-unstable-2023-10-21 -> 2.2.1
2023-11-26 18:14:46 -05:00
Nick Cao
1ed523e0e8
Merge pull request #270229 from stianlagstad/master
igv: Fix missing wrapGAppsHook causing causing GLib-GIO-ERROR
2023-11-26 18:13:37 -05:00
Nick Cao
527cdec28f
Merge pull request #270247 from r-ryantm/auto-update/openvi
openvi: 7.4.26 -> 7.4.27
2023-11-26 18:12:17 -05:00
Robert Schütz
23e336aa8e
Merge pull request #269145 from r-ryantm/auto-update/ooniprobe-cli
ooniprobe-cli: 3.19.0 -> 3.19.1
2023-11-26 15:01:50 -08:00
Chen
a95574483d sublime4: 4152 → 4169 2023-11-26 23:57:56 +01:00
Chen
8200cf15de sublime4-dev: 4155 → 4168 2023-11-26 23:57:56 +01:00
Robert Schütz
42761d63dd python311Packages.imap-tools: 1.4.0 -> 1.5.0
Diff: https://github.com/ikvk/imap_tools/compare/refs/tags/v1.4.0...v1.5.0

Changelog: https://github.com/ikvk/imap_tools/blob/v1.5.0/docs/release_notes.rst
2023-11-26 14:54:05 -08:00
Robert Schütz
5ddaecbe3c lisgd: 0.3.7 -> 0.4.0
Changelog: https://git.sr.ht/~mil/lisgd/refs/0.4.0
2023-11-26 14:49:58 -08:00
Emily
28f167a2e9
Merge pull request #270195 from emilylange/forgejo
forgejo: 1.20.5-1 -> 1.21.1-0
2023-11-26 23:48:40 +01:00
Fabian Affolter
3bf0aeb5ea
Merge pull request #270145 from r-ryantm/auto-update/python311Packages.python-hosts
python311Packages.python-hosts: 1.0.4 -> 1.0.5
2023-11-26 23:48:12 +01:00
Nikolay Korotkiy
1a0ebc9b6a
Merge pull request #269677 from sikmir/vmtools
vmTools: update debian versions
2023-11-27 02:47:06 +04:00
Nikolay Korotkiy
28f81c22cc
Merge pull request #270109 from imincik/qgis-3.28.13
qgis-ltr: 3.28.12 -> 3.28.13
2023-11-27 02:45:18 +04:00
Yifei Sun
aecd00daa6
osu-lazer-bin: remove version from name
Reported-by: Lord-Valen <lord_valen@protonmail.com>
2023-11-26 17:40:18 -05:00
adisbladis
544a1d375b lib.attrsets.attrByPath: Don't allocate one extra list per lookup recursion
Using `tail` in a recursive loop like this needlessly allocates.
This changes the loop to look up by list index instead.
2023-11-27 11:37:57 +13:00
adisbladis
7e07b3ecd5 lib.attrsets.hasAttrByPath: Don't allocate one extra list per lookup recursion
Using `tail` in a recursive loop like this needlessly allocates.
This changes the loop to look up by list index instead.
2023-11-27 11:37:56 +13:00
wackbyte
bf4d97db44
vscode-extensions.golang.go: 0.38.0 -> 0.40.0 2023-11-26 17:34:31 -05:00
R. Ryantm
abf1e2710d pdm: 2.10.3 -> 2.10.4 2023-11-26 22:32:27 +00:00
Silvan Mosberger
627af21e87
Merge pull request #269637 from adisbladis/lib-meta-avoid-alloc-platformmatch
lib.meta: Avoid attrset allocation in platformMatch
2023-11-26 23:28:39 +01:00
wackbyte
5fe8ce94f3
vscode-extensions.bradlc.vscode-tailwindcss: 0.9.9 -> 0.11.30
Also adds a description and links.
2023-11-26 17:25:41 -05:00
h7x4
cc390604e6
cyme: add passthru.tests.version 2023-11-26 23:23:17 +01:00
adisbladis
013a0a1357 lib.attrsets.matchAttrs: Avoid some list allocations when walking structure
Benchmarks (`nix-instantiate ./. -A python3`):

- Before:
``` json
{
  "cpuTime": 0.29049500823020935,
  "envs": {
    "bytes": 4484216,
    "elements": 221443,
    "number": 169542
  },
  "gc": {
    "heapSize": 402915328,
    "totalBytes": 53086800
  },
  "list": {
    "bytes": 749424,
    "concats": 4242,
    "elements": 93678
  },
  "nrAvoided": 253991,
  "nrFunctionCalls": 149848,
  "nrLookups": 49612,
  "nrOpUpdateValuesCopied": 1587837,
  "nrOpUpdates": 10104,
  "nrPrimOpCalls": 130356,
  "nrThunks": 358981,
  "sets": {
    "bytes": 30423600,
    "elements": 1859999,
    "number": 41476
  },
  "sizes": {
    "Attr": 16,
    "Bindings": 16,
    "Env": 16,
    "Value": 24
  },
  "symbols": {
    "bytes": 236145,
    "number": 24453
  },
  "values": {
    "bytes": 10502520,
    "number": 437605
  }
}
```

- After:
``` json
{
  "cpuTime": 0.2946169972419739,
  "envs": {
    "bytes": 3315224,
    "elements": 172735,
    "number": 120834
  },
  "gc": {
    "heapSize": 402915328,
    "totalBytes": 48718432
  },
  "list": {
    "bytes": 347568,
    "concats": 4242,
    "elements": 43446
  },
  "nrAvoided": 173252,
  "nrFunctionCalls": 101140,
  "nrLookups": 73595,
  "nrOpUpdateValuesCopied": 1587837,
  "nrOpUpdates": 10104,
  "nrPrimOpCalls": 83067,
  "nrThunks": 304216,
  "sets": {
    "bytes": 29704096,
    "elements": 1831673,
    "number": 24833
  },
  "sizes": {
    "Attr": 16,
    "Bindings": 16,
    "Env": 16,
    "Value": 24
  },
  "symbols": {
    "bytes": 236145,
    "number": 24453
  },
  "values": {
    "bytes": 8961552,
    "number": 373398
  }
}
```
2023-11-27 11:20:50 +13:00
Fabian Affolter
64b86e4741
Merge pull request #270178 from fabaff/aiolifx-themes-bump
python311Packages.aiolifx-themes: 0.4.9 -> 0.4.10
2023-11-26 23:12:33 +01:00
Fabian Affolter
3897a84362
Merge pull request #270179 from fabaff/nextdns-bump
python311Packages.nextdns: 2.0.1 -> 2.1.0
2023-11-26 23:12:22 +01:00
Artturi
24fe62d036
Merge pull request #269361 from cafkafk/cafk-fortune-kind-0.1.10
fortune-kind: 0.1.9 -> 0.1.10
2023-11-27 00:01:18 +02:00
Mario Rodas
013f0a99e5
Merge pull request #270227 from khaneliman/darwin-fix
yabai: fix x86_64 build
2023-11-26 16:53:16 -05:00
Sandro Jäckel
f22c33dbfe
rclone: 1.64.2 -> 1.65.0
Diff: https://github.com/rclone/rclone/compare/v1.64.2...v1.65.0

Changelog: https://github.com/rclone/rclone/blob/v1.65.0/docs/content/changelog.md
2023-11-26 22:50:06 +01:00
markuskowa
43418a924d
Merge pull request #269455 from markuskowa/fix-kamailio
kamailio: 5.7.2 -> 5.7.3, refactor expression
2023-11-26 22:49:59 +01:00
Lily Foster
25596bd419
Merge pull request #257337 from lorenzleutgeb/yarn-file
prefetch-yarn-deps: Fix handling of scoped packages
2023-11-26 16:49:33 -05:00
Mario Rodas
9fd3c98dc3
Merge pull request #265863 from SuperSandro2000/govulncheck-version
govulncheck: fix version information
2023-11-26 16:48:40 -05:00
Ben Siraphob
107fd4b846
Merge pull request #270163 from r-ryantm/auto-update/fq 2023-11-26 16:40:02 -05:00
Martin Weinelt
709da24de7
Merge pull request #270240 from chadcatlett/fix-oh-my-zsh
oh-my-zsh: add back to all-packages
2023-11-26 22:35:01 +01:00
mfrischknecht
d9b8524102
python3Packages.yamlpath: mark as broken (#270193)
* python3Packages.yamlpath: mark as broken

`yamlpath` depends on `ruamel.yaml` <= 0.17.21 [1], but the packaged
version in Nixpkgs is on version 0.17.32 by now. This breaks a lot
of the libraries own unit tests.

As I don't see anything in Nixpkgs depending on `yamlpath`, this simply
marks the package as broken.

[1]: 9bbddea520/setup.py (L48)

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
2023-11-26 22:31:44 +01:00
Thiago Kenji Okada
ddf0003c57
Merge pull request #269479 from jcf/remove-more-graalvm-references
Remove more GraalVM references
2023-11-26 21:29:05 +00:00
Mario Rodas
804e88afee
Merge pull request #270017 from r-ryantm/auto-update/metabase
metabase: 0.47.6 -> 0.47.8
2023-11-26 16:25:48 -05:00
Mario Rodas
62b168414f
Merge pull request #270040 from r-ryantm/auto-update/nu_scripts
nu_scripts: unstable-2023-10-31 -> unstable-2023-11-22
2023-11-26 16:24:16 -05:00
Mario Rodas
7fbea68a2a
Merge pull request #270077 from fabaff/tldextract-bump
python311Packages.tldextract: 5.1.0 -> 5.1.1
2023-11-26 16:23:30 -05:00
Mario Rodas
131f3876fa
Merge pull request #270057 from xrelkd/update/clipcat
clipcat: 0.6.2 -> 0.7.0
2023-11-26 16:19:42 -05:00
R. Ryantm
f90b0fc86d p2pool: 3.8 -> 3.9 2023-11-26 21:17:07 +00:00
Nikolay Korotkiy
5631ea3739
Merge pull request #270106 from imincik/qgis-3.34.1
qgis: 3.34.0 -> 3.34.1
2023-11-27 00:58:41 +04:00
Trolli Schmittlauch
0e893a9f22 nixos/forgejo docs: correct phrasing 2023-11-26 21:43:32 +01:00
Maciej Krüger
b63af5d7ea
Merge pull request #265728 from nbraud/nixos/sudo-rs/ssm-agent 2023-11-26 21:37:15 +01:00
Maciej Krüger
cdd67575e7
Merge pull request #265722 from nbraud/nixos/sudo-rs/btrbk 2023-11-26 21:36:20 +01:00
Kira Bruneau
8d16f1e8fe
Merge pull request #270185 from kira-bruneau/swayfx
Revert "swayfx: wrap like sway"
2023-11-26 15:35:38 -05:00
Patka
c1e9dde1f6 mirage-im: drop 2023-11-26 17:35:17 -03:00
Robert Scott
f82ab72973
Merge pull request #270090 from a-n-n-a-l-e-e/libxmlxx-is-c++11
libxmlxx: code predates c++17, use -std=c++11; fix darwin
2023-11-26 20:08:33 +00:00
R. Ryantm
980243d9e3 openvi: 7.4.26 -> 7.4.27 2023-11-26 20:02:01 +00:00
Robert Schütz
f31fc1b4a5 diebahn: 1.5.0 -> 2.1.0
Diff: https://gitlab.com/schmiddi-on-mobile/diebahn/-/compare/1.5.0...2.1.0

Changelog: https://gitlab.com/schmiddi-on-mobile/railway/-/blob/2.1.0/CHANGELOG.md
2023-11-26 12:00:49 -08:00
Raphael Borun Das Gupta
8de993d049 osm2pgsql: 1.9.2 → 1.10.0
Co-Authored-By: Nikolay Korotkiy <sikmir@disroot.org>
Co-Authored-By: Ivan Mincik <ivan.mincik@gmail.com>
2023-11-26 20:54:00 +01:00
Bob van der Linden
06d2663fe7
git-cola: 4.4.0 -> 4.4.1 2023-11-26 20:49:48 +01:00
Damien Cassou
ed03a6c094
Merge pull request #270156 from DamienCassou/khard-0.19 2023-11-26 19:47:14 +00:00