Commit Graph

519993 Commits

Author SHA1 Message Date
Fabian Affolter
87bd67e476 checkov: 2.4.12 -> 2.4.14
Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.4.12...2.4.14

Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.4.14
2023-08-28 18:13:17 +02:00
figsoda
7668df9e05 glicol-cli: init at 0.2.0
https://github.com/glicol/glicol-cli
2023-08-28 12:05:43 -04:00
rewine
2cc480a38f vnote: 3.16.0 -> 3.17.0 2023-08-28 16:01:52 +00:00
Lin Jian
7d4ea94d02 emacs: keep the default first writable native-comp-eln-load-path dir
Fixes https://github.com/NixOS/nixpkgs/issues/247804.
2023-08-28 15:46:04 +00:00
Lin Jian
2d324ed8f9 emacs: fix the detection of native compilation for Emacs 29
In Emacs 29, feature comp does not load early enough.  We use
native-compile instead.  This is also what Emacs uses[1].

[1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/startup.el?id=3685387e609753293c4518be75e77c659c3b2d8d#n586
2023-08-28 15:46:04 +00:00
Lin Jian
6505082e72 emacsWithPackages: load compiled site-start.el of $emacs if possible
The first log in *Message* before this patch:

  Loading /nix/store/bikm18vy6v07hmrvrll501i68440w9iw-emacs-29.1-rc1/share/emacs/site-lisp/site-start.el (source)...done

and after this patch:

  Loading /nix/store/bikm18vy6v07hmrvrll501i68440w9iw-emacs-29.1-rc1/share/emacs/site-lisp/site-start (native compiled elisp)...done
2023-08-28 15:46:04 +00:00
Lin Jian
1506ab49e3 emacs: correct the order of profiles and their sub dirs in load-path
This patch does two things:
1. making user profiles preferred over system profiles
2. putting sub dirs of one profile to the right place
  - before this patch, they are appended to the end of load-path
  - after this patch, they are inserted right after the profile

Example value of load-path before this patch:

  /run/current-system/sw/share/emacs/site-lisp/
  /etc/profiles/per-user/user/share/emacs/site-lisp/
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa/wgrep-20230203.1214
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp/vc
  ...
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa/jinx-20230730.1200
  /run/current-system/sw/share/emacs/site-lisp/elpa
  /run/current-system/sw/share/emacs/site-lisp/elpa/repology-1.2.3

after this patch:

  /etc/profiles/per-user/user/share/emacs/site-lisp
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa/jinx-20230730.1200
  /run/current-system/sw/share/emacs/site-lisp
  /run/current-system/sw/share/emacs/site-lisp/elpa
  /run/current-system/sw/share/emacs/site-lisp/elpa/repology-1.2.3
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa/wgrep-20230203.1214
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp/vc
  ...
2023-08-28 15:46:04 +00:00
Lin Jian
e8f6a5ce34 emacsWithPackages: do not symlink $emacs/share/emacs
I see no reason to symlink this dir.

Doing so may shadow unwanted libraries since the site-start.el of
Emacs adds paths under NIX_PROFILES to load-path.

It is added in [1] to fix "building emacs".  However, I have no issue
in building and using Emacs after removing it.

[1]: https://github.com/NixOS/nixpkgs/pull/89351
2023-08-28 15:46:04 +00:00
Lin Jian
f5fbea9761 emacsWithPackages: do not add the wrapper path twice
"$out/share/emacs/site-lisp" is added to load-path in wrapper.sh[1]
using EMACSLOADPATH and "$out/share/emacs/native-lisp/" is added to
native-comp-eln-load-path in wrapper.sh[2] using
EMACSNATIVELOADPATH. There is no point to add them again here.

Additionally, the trailing "/" in "$out/share/emacs/native-lisp/"
causes duplicate entries in native-comp-eln-load-path:

("/nix/store/hash1-emacs-packages-deps/share/emacs/native-lisp/" ; [3]
 "/home/user/.emacs.d/eln-cache/"
 "/nix/store/hash1-emacs-packages-deps/share/emacs/native-lisp"  ; [2]
 "/nix/store/hash2-emacs-29.1-rc1/lib/emacs/29.1/native-lisp/")

load-path does not change with this patch applied.

[1]: 1476c13422/pkgs/build-support/emacs/wrapper.sh (L47)
[2]: 1476c13422/pkgs/build-support/emacs/wrapper.sh (L50)
[3]: 1476c13422/pkgs/build-support/emacs/wrapper.nix (L166)
2023-08-28 15:46:04 +00:00
Fabian Affolter
2f5042a91a python311Packages.pylitterbot: 2023.4.6 -> 2023.4.7
Diff: https://github.com/natekspencer/pylitterbot/compare/refs/tags/v2023.4.6...v2023.4.7

Changelog: https://github.com/natekspencer/pylitterbot/releases/tag/v2023.4.7
2023-08-28 15:41:02 +00:00
Fabian Affolter
581ba9b16b python311Packages.peaqevcore: 19.0.3 -> 19.1.2
Changelog: https://github.com/elden1337/peaqev-core/releases/tag/19.1.2
2023-08-28 17:10:03 +02:00
Fabian Affolter
f66efd3db7 python311Packages.publicsuffixlist: 0.10.0.20230824 -> 0.10.0.20230828 2023-08-28 17:08:46 +02:00
Fabian Affolter
08bb76a88d python311Packages.hahomematic: 2023.8.11 -> 2023.8.12
Diff: https://github.com/danielperna84/hahomematic/compare/refs/tags/2023.8.11...2023.8.12

Changelog: https://github.com/danielperna84/hahomematic/releases/tag/2023.8.12
2023-08-28 17:07:53 +02:00
Fabian Affolter
23e586d264 python311Packages.griffe: 0.35.1 -> 0.35.2
Diff: https://github.com/mkdocstrings/griffe/compare/refs/tags/0.35.1...0.35.2

Changelog: https://github.com/mkdocstrings/griffe/blob/0.35.2/CHANGELOG.md
2023-08-28 17:06:43 +02:00
Fabian Affolter
e2ea931794 python311Packages.aioesphomeapi: 16.0.1 -> 16.0.2
Diff: https://github.com/esphome/aioesphomeapi/compare/refs/tags/v16.0.1...v16.0.2

Changelog: https://github.com/esphome/aioesphomeapi/releases/tag/v16.0.2
2023-08-28 17:05:01 +02:00
Fabian Affolter
d1d57f39aa
Merge pull request #251901 from r-ryantm/auto-update/python310Packages.djangorestframework-simplejwt
python310Packages.djangorestframework-simplejwt: 5.2.2 -> 5.3.0
2023-08-28 16:44:51 +02:00
Robert Scott
505dccf65e
Merge pull request #251942 from risicle/ris-fortify-headers-disable-non-gcc
cc-wrapper: don't use `fortify-headers` for non-gcc compilers
2023-08-28 15:42:21 +01:00
Sigmanificient
06b94e0ca5 banana-vera: 1.30-python3.10 -> 1.30-fedora38 2023-08-28 16:41:00 +02:00
Maciej Krüger
69493bd680
Merge pull request #251859 from mkg20001/openwrt 2023-08-28 16:35:10 +02:00
Franz Pletz
68bf25213d
Merge pull request #251886 from fpletz/pkgs/shotman-0.4.5 2023-08-28 16:30:12 +02:00
Franz Pletz
417810662a
Merge pull request #251484 from fpletz/pkgs/ntpd-rs-0.3.7 2023-08-28 16:29:49 +02:00
Emily
70508e024e
Merge pull request #251613 from pschmitt/obs-freeze-filter
obs-studio-plugins.obs-freeze-filter: init at 0.3.3
2023-08-28 16:26:36 +02:00
Ludovico Piero
676525be5f
nwg-panel: 0.9.11 -> 0.9.12 2023-08-29 00:22:47 +10:00
Mario Rodas
0b38274e45
Merge pull request #251970 from r-ryantm/auto-update/python310Packages.approvaltests
python310Packages.approvaltests: 8.4.1 -> 9.0.0
2023-08-28 09:18:58 -05:00
Ludovico Piero
f6c5130ce5
armcord: add ludovicopiero as a maintainer 2023-08-29 00:16:07 +10:00
Fabian Affolter
9a74312e50
Merge pull request #251868 from r-ryantm/auto-update/hcloud
hcloud: 1.36.0 -> 1.37.0
2023-08-28 16:15:42 +02:00
K900
df26daaf41
Merge pull request #251977 from K900/pob-2.33.4
path-of-building.data: 2.33.3 -> 2.33.5
2023-08-28 17:09:07 +03:00
K900
94eeeb8785 path-of-building.data: 2.33.3 -> 2.33.5
Diff: https://github.com/PathOfBuildingCommunity/PathOfBuilding/compare/v2.33.3...v2.33.5
2023-08-28 17:07:13 +03:00
Robert Scott
df02fcb79b cc-wrapper: don't use fortify-headers for non-gcc compilers 2023-08-28 15:06:44 +01:00
Sandro Jäckel
0944e19139 betterbird: 102.12.0-bb37 → 102.14.0-bb39 2023-08-28 15:28:57 +02:00
Philipp Schmitt
fc0e6da378
obs-studio-plugins.obs-freeze-filter: init at 0.3.3 2023-08-28 15:26:10 +02:00
Pol Dellaiera
38e7c600ad
Merge pull request #218394 from xyven1/master
spotify-player: make build options configurable
2023-08-28 15:24:03 +02:00
R. Ryantm
3f9b79207b python310Packages.approvaltests: 8.4.1 -> 9.0.0 2023-08-28 13:22:29 +00:00
Mario Rodas
e9315ce137
Merge pull request #251941 from wahjava/update-ugrep
ugrep: 4.0.4 -> 4.0.5
2023-08-28 08:12:16 -05:00
Matthias Beyer
1465883813
Merge pull request #251940 from cafkafk/cafk-eza-v0.10.9
eza: 0.10.8 -> 0.10.9
2023-08-28 15:08:32 +02:00
Mario Rodas
7905c28195
Merge pull request #251848 from marsam/update-sqldef
sqldef: 0.12.7 -> 0.16.4
2023-08-28 07:46:30 -05:00
Phillip Cloud
6d44897206
azure-cli: add msrest to specific overrides 2023-08-28 08:41:05 -04:00
Phillip Cloud
c31fa5cf89
azure-cli: add missing azure-mgmt-appcontainers dependency 2023-08-28 08:41:04 -04:00
Phillip Cloud
da686a62dc
style: format azure-cli/python-packages.nix 2023-08-28 08:41:03 -04:00
Jacek Galowicz
49422faef7
Merge pull request #251931 from r-ryantm/auto-update/python310Packages.mkdocs-minify
python310Packages.mkdocs-minify: 0.6.3 -> 0.7.1
2023-08-28 14:36:42 +02:00
K900
d6d7259c5c
Merge pull request #251929 from RaitoBezarius/kernel_6_5
linux_6_5: init, stable/LTS kernels upgrade
2023-08-28 15:14:27 +03:00
Raito Bezarius
1b8869eb7f linux/hardened/patches/6.4: 6.4.11-hardened1 -> 6.4.12-hardened1 2023-08-28 14:07:53 +02:00
Raito Bezarius
1125d5fcd2 linux/hardened/patches/6.1: 6.1.46-hardened1 -> 6.1.47-hardened1 2023-08-28 14:07:53 +02:00
Raito Bezarius
be50d8c358 linux_latest-libre: 19392 -> 19397 2023-08-28 14:07:53 +02:00
Raito Bezarius
385cbd7fc4 linux: 6.1.47 -> 6.1.49 2023-08-28 14:07:53 +02:00
Raito Bezarius
e133821958 linux: 5.15.127 -> 5.15.128 2023-08-28 14:07:53 +02:00
Raito Bezarius
238eca32de linux: 5.10.191 -> 5.10.192 2023-08-28 14:07:53 +02:00
Raito Bezarius
4e4d4ed5c7 linux_6_5: init
https://lwn.net/Articles/942879/
2023-08-28 14:07:53 +02:00
VuiMuich
e45b9d1b8c citron: init at 0.15.0
correct maintainer name

fix typo

change hash keys

Apply suggestions from code review

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>

Apply suggestions from code review

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-08-28 11:58:35 +00:00
VuiMuich
9f9e0cc5cc maintainers: add vuimuich 2023-08-28 11:58:35 +00:00