Commit Graph
552382 Commits
Author SHA1 Message Date
Nick CaoandGitHub f348e371c1 Merge pull request #269628 from r-ryantm/auto-update/python311Packages.types-redis
python311Packages.types-redis: 4.6.0.10 -> 4.6.0.11
2023-11-24 09:31:34 -05:00
ArtturiandGitHub 81ca4c3e22 Merge pull request #265524 from Artturin/usemakescopew 2023-11-24 16:29:21 +02:00
Matthieu CoudronandGitHub 102c2a845b Merge pull request #269629 from GaetanLepage/vim-plugins
vimPlugins: update on 2023-11-24
2023-11-24 14:46:12 +01:00
Uri BaghinandGitHub c3c2fe4867 Merge pull request #269481 from boltzmannrain/bazel_5_clang16
bazel_5: fix CLang 16 Werror-s on darwin
2023-11-24 21:44:50 +08:00
Uri BaghinandGitHub c5a7460fc9 Merge pull request #269484 from boltzmannrain/bazel_4_clang16
bazel_4: fix CLang 16 Werror-s on darwin
2023-11-24 21:44:32 +08:00
Lily FosterandGitHub c793562bff Merge pull request #266323 from Nyabinary/cosmic-osd
cosmic-osd: init at unstable-2023-11-15
2023-11-24 08:41:56 -05:00
Gaetan Lepage 445c59a389 vimPlugins.nvim-treesitter: update grammars 2023-11-24 13:56:13 +01:00
R. Ryantm 6a702bfc1a python311Packages.types-redis: 4.6.0.10 -> 4.6.0.11 2023-11-24 12:51:38 +00:00
Mario RodasandGitHub 7049e9c7a3 Merge pull request #266119 from SuperSandro2000/fzf-perl
fzf: fix perl detection
2023-11-24 07:49:13 -05:00
Gaetan Lepage 3975e4e2e4 vimPlugins: update on 2023-11-24 2023-11-24 13:47:46 +01:00
adisbladisandGitHub e7acade1bb Merge pull request #269592 from marsam/add-emacs-xapian-lite
emacsPackages.xapian-lite: init at 2.0.0
2023-11-25 01:32:08 +13:00
ArtturiandGitHub 7cc4f72999 Merge pull request #251671 from dotlambda/qutebrowser-qt5
qutebrowser-qt5: replace qt5.qutebrowser
2023-11-24 14:30:25 +02:00
ArtturiandGitHub 397d67a60d Merge pull request #263736 from rollf/amazon-corretto
corretto{11,17,19}: init at 11.0.20.9.1/17.0.8.8.1/19.0.2.7.1
2023-11-24 14:24:38 +02:00
Weijia WangandGitHub 29af232984 Merge pull request #269595 from ilya-fedin/telegram-hydra
telegram-desktop: restore build on Hydra
2023-11-24 13:03:27 +01:00
6182b0bde8 nixos/xscreensaver: add module tests
Co-authored-by: Aidan Gauland <aidalgol@fastmail.net>
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-11-24 08:53:00 -03:00
54020c36a2 nixos/xscreensaver: init module
This adds a NixOS module for XScreenSaver (from @aidalgol in #130218,
with a few updates).

The module:

* Installs XScreenSaver
* Sets up a suid wrapper for xscreensaver-auth
* Sets up a user service for xscreensaver

The suid wrapper should function correctly when xscreensaver is
installed via the derivation update in 40a00547b71.

Co-authored-by: Aidan Gauland <aidalgol@fastmail.net>
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-11-24 08:53:00 -03:00
Chris MarchesiandAnderson Torres 2034ea01b9 xscreensaver: add suid wrapper patch
This adds a patch for XScreenSaver that ensures that the suid wrapper
for xscreensaver-auth is run correctly.

The patch is a simple update to drivers/xscreensaver.c that inserts
/run/wrappers/bin before the DEFAULT_PATH_PREFIX, which is the directory
for xscreensaver hacks/demos, and should be preserved.

The wrapper directory can be modified in the derivation, or even
disabled.

Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2023-11-24 08:53:00 -03:00
Chris MarchesiandAnderson Torres 45c7026247 maintainers: add vancluever 2023-11-24 08:53:00 -03:00
JanikandGitHub 21af9192e6 Merge pull request #269026 from r-ryantm/auto-update/monetdb 2023-11-24 12:34:28 +01:00
JanikandGitHub 299eac14da Merge pull request #269306 from makefu/pkg/mergerfs-tools/maintainer
mergerfs-tools: 20190411 -> 20230912, add makefu as maintainer
2023-11-24 12:23:08 +01:00
Alyssa Ross c9b74e4908 rustc-wasm32: fix targetPlatform
The previous version stopped working when we started elaborating Rust
metadata.  Here, I've made it a bit nicer by actually setting
targetPlatform to an elaborated system.  Setting the config to wasi to
get elaborate to understand it is a bit of a hack, but I think it's
less of a hack than what we had before.

The only actual difference this makes to the rustc-wasm32 derivation
compared to the previous working version, is that now crt-static is
set.  This is probably the right thing anyway.

Fixes: e3e57b8f18 ("lib.systems: elaborate Rust metadata")
2023-11-24 12:21:30 +01:00
Alyssa Ross 62f7a6dcc1 lib.systems.elaborate: fix passing rust
Usually, attributes passed explicitly to elaborate take precedence
over the elaborated ones, but since we also elaborate the nested
"rust" attrset, we need to push that one level down, so the rest of
"rust" is still filled in if you just pass
{ rust = { config = ... } }.

I've had to drop the assertion that checked that at most one of "rust"
and "rustc" was part of the un-elaborated system, because doing this
broke passing an elaborated system in, which should be idempotent.

For the same reason, I've also had to make it possible for
rust.rustcTargetSpec to be passed in.  Otherwise, on the second call,
since platform was filled in by the first, the custom target file
would be constructed.  The only other way to avoid this would be to
compare the platform attrs to all built in Rust targets to check it
wasn't one of those, and that isn't feasible.

Fixes: e3e57b8f18 ("lib.systems: elaborate Rust metadata")
2023-11-24 12:21:30 +01:00
Franz PletzandGitHub 66d51a26b3 Merge pull request #269538 from globin/vim-lark-syntax 2023-11-24 12:12:21 +01:00
Silvan MosbergerandGitHub 306a3e0f92 Merge pull request #269514 from GaetanLepage/invidious-update 2023-11-24 12:07:22 +01:00
Nikolay KorotkiyandGitHub 068bacb9b6 Merge pull request #269498 from r-ryantm/auto-update/cudatext-qt
cudatext-qt: 1.201.0.2 -> 1.202.1
2023-11-24 15:02:37 +04:00
Robert SchützandGitHub ada27c75a1 Merge pull request #266496 from SuperSandro2000/nextcloud-notify_push
nextcloud-notify_push: 0.6.3 -> 0.6.5
2023-11-24 02:30:30 -08:00
Jonas HeinrichandYt 8f3f6a2a77 nixos/invoiceplane: Add settings option 2023-11-24 10:25:46 +00:00
piegamesandGitHub 965d12abf8 Merge pull request #269211: gnomeExtensions.ddterm: unbreak 2023-11-24 11:05:18 +01:00
adisbladisandGitHub 4c43f0bb75 Merge pull request #269584 from saschagrunert/crun-up
crun: 1.11.1 -> 1.12
2023-11-24 22:43:09 +13:00
JanikandGitHub 067db23e36 Merge pull request #268980 from pinpox/init-satty 2023-11-24 10:40:49 +01:00
markuskowaandGitHub e267a9ebe3 Merge pull request #268498 from markuskowa/upd-rdma-core
rdma-core: 48.0 -> 49.0
2023-11-24 10:39:32 +01:00
7c6f434candGitHub 3cc8e341a7 Merge pull request #269349 from r-ryantm/auto-update/libre
libre: 3.6.0 -> 3.6.2
2023-11-24 09:21:52 +00:00
7c6f434candGitHub 5610c426e5 Merge pull request #269350 from r-ryantm/auto-update/librem
librem: 2.10.0 -> 2.12.0
2023-11-24 09:21:37 +00:00
happysaladaandYt e5b0b76105 nixos/clamav: add fangfrisch updater 2023-11-24 09:09:46 +00:00
Ilya Fedin 8fd6ce4021 telegram-desktop: restore build on Hydra
Looks like I accidentaly removed meta.platforms entirely instead of setting it to platforms.all which disabled the build...
2023-11-24 13:01:38 +04:00
Pablo Ovelleiro Corral aa92c1f317 satty: init at 0.7.0 2023-11-24 09:09:46 +01:00
Sascha Grunert 369c508fae crun: 1.11.1 -> 1.12
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
2023-11-24 09:00:12 +01:00
Fabian AffolterandGitHub 869da636fe Merge pull request #269495 from fabaff/cnspec-bump
cnspec: 9.6.1 -> 9.8.0
2023-11-24 08:21:46 +01:00
Fabian AffolterandGitHub 1b31481aef Merge pull request #269497 from fabaff/checkov-bump
checkov: 3.1.9 -> 3.1.10
2023-11-24 08:21:29 +01:00
JanikandGitHub babbc70adb Merge pull request #268845 from frogamic/swaylock-fancy 2023-11-24 08:08:01 +01:00
Maciej KrügerandGitHub df34a82563 Merge pull request #269574 from mkg20001/x2gor
x2go{server,client}: remove myself as maintainer
2023-11-24 07:47:23 +01:00
K900andGitHub d0e68d7078 Merge pull request #269515 from dpc/23-11-23-assertion-fix
wrapFirefox: fix error message
2023-11-24 09:46:50 +03:00
Maciej Krüger d03e034514 x2goserver: remove myself as maintainer 2023-11-24 07:26:12 +01:00
Maciej Krüger e1b34c3e79 x2goclient: remove myself as maintainer 2023-11-24 07:25:52 +01:00
OTABI TomoyaandGitHub c80b0906d5 Merge pull request #269436 from mweinelt/python313-a2
python313: 3.13.0a1 -> 3.13.0a2
2023-11-24 14:52:39 +09:00
Maciej KrügerandGitHub 58417e5b90 Merge pull request #269564 from mkg20001/openwrt 2023-11-24 06:50:48 +01:00
Maciej Krüger 73f9b84ea6 libnl-tiny: build only on linux 2023-11-24 06:43:28 +01:00
Maciej KrügerandGitHub 7c3a4b84a9 Merge pull request #269555 from mkg20001/openwrt 2023-11-24 06:42:02 +01:00
Vincent LaporteandVincent Laporte 2e5eaaa6f5 ocamlPackages.atd: 2.11.0 → 2.15.0 2023-11-24 06:34:22 +01:00
Maciej Krüger 4ae56bced4 *: add myself to all openwrt packages as maintainer 2023-11-24 05:19:53 +01:00