Bernardo Meurer
dd1fc37d06
tree-sitter-grammars: update
2022-11-18 15:27:42 -05:00
Timothy DeHerrera and GitHub
80fc321968
Merge pull request #201400 from das-g/python-modules-sip-6.7.4
...
python-modules/sip: 6.7.1 → 6.7.4
2022-11-18 12:22:30 -07:00
Anderson Torres and GitHub
e38f6d3742
Merge pull request #201652 from hmenke/sof-firmware
...
sof-firmware: 2.2 -> 2.2.2
2022-11-18 14:49:26 -03:00
Alyssa Ross and Alyssa Ross
4c80e3665c
crosvm.updateScript: don't vendor Cargo.lock
...
This is no longer required as crosvm now includes a Cargo.lock in-tree
again.
2022-11-18 17:46:29 +00:00
Alyssa Ross and Alyssa Ross
fb60a5c947
crosvm: 104.0 -> 107.1
...
crosvm now includes a Cargo.lock again, so we don't need to vendor it
into Nixpkgs.
Its build system now compiles the seccomp policies into the binary, so
we don't need to build and install those ourselves any more.
2022-11-18 17:46:29 +00:00
Alyssa Ross and Alyssa Ross
fcdbfc3d11
crosvm.updateScript: update release branch format
...
For R106 and onwards, upstream has gone back to not having a
separation between chromeos and not.
2022-11-18 17:46:29 +00:00
Alyssa Ross and Alyssa Ross
80f9c2c366
crosvm: switch back to old git repo URL
...
Despite having moved the main repo to crosvm/crosvm, release branches
are still only being created on chromiumos/platform/crosvm. So we
should have crosvm/crosvm as the homepage, but fetch from
chromiumos/platform/crosvm.
Link: https://github.com/NixOS/nixpkgs/pull/193746
2022-11-18 17:46:29 +00:00
Anderson Torres and GitHub
fc8a4f7291
Merge pull request #201521 from hmenke/alps
...
nixos/alps: add hardening, extensible options, test
2022-11-18 14:46:03 -03:00
Astro and GitHub
5dcab938e0
cloud-hypervisor: 26.0 -> 28.0 ( #201572 )
2022-11-18 17:44:36 +00:00
Jan Tojnar and GitHub
0bf1638c25
Merge pull request #201781 from jtojnar/gimp-deps
...
babl,gegl: update
2022-11-18 17:59:11 +01:00
Nikolay Korotkiy and GitHub
45f8f858e0
Merge pull request #200899 from sikmir/slock
...
slock: 1.4 → 1.5
2022-11-18 20:49:25 +04:00
a79542fa48
vimPlugins.himalaya-vim: fix source due to repo split ( #195927 )
...
Previously the Vim plugin was a part of the main repository, but the
author has elected to split out the project and move away from GitHub
to an open source Git forge @ https://git.sr.ht/~soywod/himalaya-vim/
As such, the previous plugin is currently broken, but now it can be
updated indepentently.
Co-authored-by: figsoda <figsoda@pm.me >
2022-11-18 11:44:44 -05:00
Jan Tojnar
4e732ec071
gegl: 0.4.38 → 0.4.40
...
Now requires OpenMP.
https://gitlab.gnome.org/GNOME/gegl/-/compare/GEGL_0_4_38...GEGL_0_4_40
2022-11-18 17:27:16 +01:00
Artturi and GitHub
a700962b73
Merge pull request #201779 from Artturin/makeinternal1
...
lib/sources: make commitIdFromGitRepoOrError internal and use # for c…
2022-11-18 18:23:46 +02:00
R. Ryantm and Alyssa Ross
05f7af3a43
git-cinnabar: 0.5.10 -> 0.5.11
2022-11-18 16:22:08 +00:00
Jan Tojnar
d1fb9085be
babl: 0.1.96 → 0.1.98
...
https://gitlab.gnome.org/GNOME/babl/-/compare/BABL_0_1_96...BABL_0_1_98
2022-11-18 16:33:30 +01:00
figsoda and GitHub
7e853f1d55
Merge pull request #201726 from figsoda/nvim-treesitter-homepage
...
vimPlugins.nvim-treesitter: set meta.homepage for grammars
2022-11-18 10:31:31 -05:00
Bruno Bigras and GitHub
4b85db7975
Merge pull request #197438 from schnusch/mpvScripts.sponsorblock
...
mpvScripts.sponsorblock: unstable-2021-12-23 -> unstable-2022-09-24
2022-11-18 10:23:29 -05:00
Artturin
962929884a
lib/sources: make commitIdFromGitRepoOrError internal and use # for comments
...
so that it doesn't make the manual build fail
> Apparently this is related to the combination of this new function not getting exported from the file, while still getting documented.
2022-11-18 17:17:51 +02:00
markuskowa and GitHub
386e2cf59d
Merge pull request #201767 from markuskowa/upd-gromacs
...
gromacs: 2022.3 -> 2022.4
2022-11-18 16:15:34 +01:00
Martin Weinelt and GitHub
dba0c71b6d
Merge pull request #201762 from mweinelt/thunderbird-102.5.0
2022-11-18 16:11:21 +01:00
a437e9c7b6
pre-commit-hooks: fix conditional dependency on tomli ( #200178 )
...
* pre-commit-hooks: fix conditional dependency on tomli
As seen in https://github.com/pre-commit/pre-commit-hooks/commit/fc88f3fa495385e6b367f7c4c8cf10940ad053da , upstream changed their dependency from `toml` to `tomli>=1.1.0;python_version<"3.11"`.
Without this patch, running `check-toml` from this package fails with:
```
Traceback (most recent call last):
File "/nix/store/06qpfmlgkhxakgjs8g7gk5jlkczij0m6-python3.10-pre-commit-hooks-4.3.0/bin/.check-toml-wrapped", line 6, in <module>
from pre_commit_hooks.check_toml import main
File "/nix/store/06qpfmlgkhxakgjs8g7gk5jlkczij0m6-python3.10-pre-commit-hooks-4.3.0/lib/python3.10/site-packages/pre_commit_hooks/check_toml.py", line 10, in <module>
import tomli as tomllib
ModuleNotFoundError: No module named 'tomli'
```
See https://github.com/pre-commit/pre-commit-hooks/issues/833 .
* pre-commit-hooks: use lib.optionals helper for clarity
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch >
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch >
2022-11-18 16:52:28 +02:00
Mario Rodas and GitHub
7edfbbbad1
Merge pull request #201580 from r-ryantm/auto-update/s2n-tls
...
s2n-tls: 1.3.27 -> 1.3.28
2022-11-18 09:26:15 -05:00
Mario Rodas and GitHub
3e6067a60b
Merge pull request #201751 from marsam/update-racket
...
racket,racket-minimal: 8.6 -> 8.7
2022-11-18 09:22:37 -05:00
Mario Rodas and GitHub
a188964a7a
Merge pull request #201470 from chivay/ghidra-update
...
ghidra-bin: 10.2.1 -> 10.2.2
2022-11-18 09:22:12 -05:00
Fabian Affolter and GitHub
203904c766
Merge pull request #201390 from SuperSandro2000/python-tld
...
python310Packages.tld: remove tox, pytest-cov dependency
2022-11-18 15:19:11 +01:00
Fabian Affolter and GitHub
9f7fe9becc
Merge pull request #201756 from r-ryantm/auto-update/appthreat-depscan
...
appthreat-depscan: 2.3.0 -> 3.0.0
2022-11-18 15:11:12 +01:00
Martin Weinelt and GitHub
076cf0f4d8
Merge pull request #201703 from mweinelt/smartctl-exporter-linux
2022-11-18 15:10:51 +01:00
figsoda and GitHub
502f301163
Merge pull request #201714 from figsoda/indent
...
scripts/pluginupdate: fix fetchgit indentation
2022-11-18 09:04:01 -05:00
Mario Rodas and GitHub
75be93b1c5
Merge pull request #201416 from r-ryantm/auto-update/doctl
...
doctl: 1.85.0 -> 1.87.0
2022-11-18 08:59:46 -05:00
Mario Rodas and GitHub
9ef49c7e9f
Merge pull request #201414 from wegank/farstream-darwin
...
farstream: add darwin support
2022-11-18 08:59:15 -05:00
Mario Rodas and GitHub
9727e904e9
Merge pull request #201469 from hmenke/git-branchless
...
git-branchless: 0.5.1 -> 0.6.0
2022-11-18 08:53:24 -05:00
Mario Rodas and GitHub
668fd70ae4
Merge pull request #201475 from Izorkin/update-ngtcp2
...
ngtcp2: 0.10.0 -> 0.11.0
2022-11-18 08:52:47 -05:00
Vladimír Čunát
d05f573b6c
Merge #201688 : xdp-tools: 1.2.6 -> 1.2.8
2022-11-18 14:51:40 +01:00
Maximilian Bosch and GitHub
ffe950b8d4
Merge pull request #201687 from Ma27/bump-grafana
...
grafana: 9.2.4 -> 9.2.5
2022-11-18 14:46:53 +01:00
Markus Kowalewski
57d39374e2
gromacs: 2022.3 -> 2022.4
2022-11-18 14:37:22 +01:00
Mario Rodas and GitHub
d115b82f50
Merge pull request #201484 from sternenseemann/chroma-2.3.0
...
chroma: 2.2.0 -> 2.3.0
2022-11-18 08:19:42 -05:00
Mario Rodas and GitHub
ed469729fe
Merge pull request #201489 from Luflosi/update/python3Packages.sphinx-copybutton
...
python3Packages.sphinx-copybutton: 0.5.0 -> 0.5.1
2022-11-18 08:11:23 -05:00
Mario Rodas and GitHub
b7a58958bb
Merge pull request #201506 from kilianar/logseq-0.8.11
...
logseq: 0.8.10 -> 0.8.11
2022-11-18 08:04:24 -05:00
Mario Rodas and GitHub
d01f831514
Merge pull request #201738 from r-ryantm/auto-update/ccid
...
ccid: 1.5.0 -> 1.5.1
2022-11-18 08:01:59 -05:00
Mario Rodas and GitHub
512130c735
Merge pull request #201557 from anthonyroussel/nvtop_fix
...
nvtop: fix build
Fixes #201340
2022-11-18 08:01:38 -05:00
Mario Rodas and GitHub
9b70453b52
Merge pull request #201754 from r-ryantm/auto-update/flyctl
...
flyctl: 0.0.431 -> 0.0.432
2022-11-18 07:59:34 -05:00
Mario Rodas and GitHub
02093ffe7c
Merge pull request #201758 from qowoz/fzf
...
fzf: 0.35.0 -> 0.35.1
2022-11-18 07:58:49 -05:00
Martin Weinelt
1afe1b2b00
thunderbird-bin-unwrapped: 102.4.1 -> 102.5.0
...
https://www.thunderbird.net/en-US/thunderbird/102.5.0/releasenotes/
https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird102.5
Fixes: CVE-2022-45403, CVE-2022-45404, CVE-2022-45405, CVE-2022-45406,
CVE-2022-45408, CVE-2022-45409, CVE-2022-45410, CVE-2022-45411,
CVE-2022-45412, CVE-2022-45416, CVE-2022-45418, CVE-2022-45420,
CVE-2022-45421
2022-11-18 13:56:23 +01:00
Martin Weinelt
2018e786a3
thunderbird-unwrapped: 102.4.1 -> 102.5.0
...
https://www.thunderbird.net/en-US/thunderbird/102.5.0/releasenotes/
https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird102.5
Fixes: CVE-2022-45403, CVE-2022-45404, CVE-2022-45405, CVE-2022-45406,
CVE-2022-45408, CVE-2022-45409, CVE-2022-45410, CVE-2022-45411,
CVE-2022-45412, CVE-2022-45416, CVE-2022-45418, CVE-2022-45420,
CVE-2022-45421
2022-11-18 13:54:28 +01:00
Mario Rodas and GitHub
46e209ce07
Merge pull request #198073 from thenonameguy/pg_relusage
...
postgresqlPackages.pg_relusage: init at 0.0.1
2022-11-18 07:48:28 -05:00
sternenseemann
58bb52af95
chroma: 2.3.0 -> 2.4.0
...
https://github.com/alecthomas/chroma/releases/tag/v2.4.0
2022-11-18 13:35:53 +01:00
happysalada and Yt
f05186306c
tremor-language-server: init at 0.12.4
2022-11-18 07:30:07 -05:00
Krisztian Szabo
6390d01e13
postgresqlPackages.pg_relusage: init at 0.0.1
2022-11-18 13:24:29 +01:00
Adrian Pistol
7f640597e6
xdp-tools: 1.2.6 -> 1.2.8
2022-11-18 13:19:51 +01:00