Commit graph

519856 commits

Author SHA1 Message Date
Tim Cuthbertson 0bffcc3f3c setup-hooks/strip: add stripExclude 2023-09-03 20:18:10 +03:00
Kira Bruneau 074dea1e11
Merge pull request #251077 from kira-bruneau/krane
krane: 3.1.0 -> 3.3.0
2023-08-28 12:42:15 -04:00
Jan Tojnar 434d160d7c
Merge pull request #234615 from linsui/dconf
nixos/dconf: support generating from attrs
2023-08-28 18:31:52 +02:00
K900 b07fffd56e
Merge pull request #252004 from nadimkobeissi/colord-kde
colord-kde: fix missing buildInput
2023-08-28 19:27:19 +03:00
Nadim Kobeissi e1854055c8 colord-kde: fix missing buildInput
Added a buildInput that is not strictly required for the package
to compile, but without which the package will not actually work at all.
2023-08-28 18:19:18 +02:00
Theodore Ni 2656772bb2
Merge pull request #247428 from codedownio/jupyter-all
jupyter-all: init a package to build all Jupyter kernels
2023-08-28 09:17:56 -07: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 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
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
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
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
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
figsoda 277c8de137
Merge pull request #251827 from figsoda/review
nixpkgs-review: 2.10.0 -> 2.10.1
2023-08-28 07:52:35 -04:00
Janik e79a336264
Merge pull request #251819 from RaitoBezarius/listmonk-patch
listmonk: modify the 1.20 Go support patch
2023-08-28 13:37:38 +02:00
OTABI Tomoya 09fa1abcad
Merge pull request #251179 from natsukium/fzf-fish/update
fishPlugins.fzf-fish: 9.9 -> 10.0
2023-08-28 20:23:52 +09:00
Doron Behar 903665c37b
Merge pull request #251946 from pzeinlinger/master
pdfcpu: 0.4.1 -> 0.5.0
2023-08-28 11:22:11 +00:00
Matthias Beyer c7e51b136c
Merge pull request #251937 from saschagrunert/osc
osc: 1.0.0b1 -> 1.3.0
2023-08-28 12:55:43 +02:00
Paul Zeinlinger 838fea9a55 pdfcpu: 0.4.1 -> 0.5.0 2023-08-28 12:32:41 +02:00
Ashish SHUKLA 26a8c64857
ugrep: 4.0.4 -> 4.0.5 2023-08-28 12:19:08 +02:00
Christina Sørensen dd7e988ed4
eza: v0.10.8 -> v0.10.9
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-08-28 12:13:34 +02:00