quantenzitrone
7d8132a92c
treewide: remove references to the xorg namespace in pkgs (automated)
...
this creates some eval errors that will be fixed in the next commit
done with the following script:
```fish
\#!/usr/bin/env fish
set packagesjson (nix eval --impure --json --expr '
let
lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
name: _:
if name == "lib" then
lib
else if name == "config" then
{ allowAliases = false; }
else
name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)
set one (grep '^ [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^ [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)
for arg in $one $two
set oname $arg
set nname (echo $packagesjson | jq -r .$oname)
if test $nname = null
echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
continue
end
echo $oname "->" $nname
# replace basic xorg.$name references
for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
# special cases
sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file
# replace
sd -F "xorg.$oname" "$nname" $file
# fixup function arguments
# prevent duplicate function args
if grep -E " ($oname|$nname),\$" $file >/dev/null
continue
end
if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg
if grep ' xorg,$' $file >/dev/null
sd ' xorg,$' " xorg,
$nname," $file
else if grep ' xorg ? .*,$' $file >/dev/null
sd 'xorg( ? .*),$' "xorg\$1,
$nname," $file
else
sd -F 'xorg,' "$nname,
xorg," $file
end
else # case there is no more xorg..* so we can just replace the function arg
sd 'xorg(| ? .*),.*$' "$nname," $file
end
end
end
nix fmt
```
2026-01-25 22:28:09 +01:00
quantenzitrone
c7c77c1aee
treewide: remove all uses of 'with xorg;' in pkgs
...
this shouldn't create any rebuilds
this was done manually by grepping for `with xorg` and `with pkgs.xorg`
2026-01-25 22:26:00 +01:00
Gergő Gutyina and GitHub
6095dea7ef
various: remove unused argument overrides ( #483746 )
2026-01-25 21:13:47 +00:00
Gaétan Lepage and GitHub
f0bbae0daf
maintainers: bridgesense -> saadndm ( #483761 )
2026-01-25 21:13:22 +00:00
Philip Taron and GitHub
f5d93a1e69
workflows/periodic-merge: fix comment syntax ( #483727 )
2026-01-25 21:11:04 +00:00
Gergő Gutyina and GitHub
17b4b1b7ab
various: remove by-name overrides (part 1) ( #483681 )
2026-01-25 21:06:16 +00:00
Saad Nadeem
e39a870f70
maintainers: bridgesense -> saadndm
2026-01-25 16:03:23 -05:00
Yt and GitHub
6ba71cbcab
python3Packages.torchtune: skip failing tests on x86_64-linux ( #482990 )
2026-01-25 20:46:25 +00:00
Michael Daniels and GitHub
1260a929cf
ci: auto add '8.has: package (new)' and '8.has: package (update)' labels ( #482478 )
2026-01-25 20:37:50 +00:00
Adam C. Stephens and GitHub
2898dbae4a
beam26Packages.ex_doc: 0.39.3 -> 0.40.0 ( #483742 )
2026-01-25 20:11:47 +00:00
Aliaksandr and Michael Daniels
e8cb4ce5e0
various: remove unused argument overrides
...
Overriding the argument with the same default value as in package.nix is
pointless.
Co-authored-by: Michael Daniels <mdaniels5757@gmail.com >
2026-01-25 14:58:26 -05:00
Doron Behar and GitHub
3e118b3898
intel2200BGFirmware: split doc output ( #482655 )
2026-01-25 19:50:36 +00:00
R. Ryantm
b42efdd3cd
beam26Packages.ex_doc: 0.39.3 -> 0.40.0
2026-01-25 19:50:17 +00:00
Peder Bergebakken Sundt and GitHub
f6c76ae2f7
curv: 0.5-unstable-2026-01-17 -> 0.5-unstable-2026-01-23 ( #483458 )
2026-01-25 19:46:16 +00:00
nixpkgs-ci[bot] and GitHub
270413be81
piliplus: 1.1.5.3 -> 1.1.5.5 ( #481486 )
2026-01-25 19:42:50 +00:00
Michael Daniels and GitHub
c0fbc2ce7a
buildVscode: init ( #474458 )
2026-01-25 19:42:32 +00:00
Peder Bergebakken Sundt
5ef081f9db
curv: mark broken on aarch64
...
https://hydra.nixos.org/job/nixos/unstable/nixpkgs.curv.aarch64-linux
2026-01-25 20:41:38 +01:00
Doron Behar and GitHub
7b1a07ed4d
various: remove by-name overrides (part 2) ( #483689 )
2026-01-25 19:39:39 +00:00
Doron Behar and GitHub
82be19ed7d
cagent: init at 1.19.0 ( #479102 )
2026-01-25 19:35:26 +00:00
R. Ryantm
3de83a0d73
piliplus: 1.1.5.3 -> 1.1.5.5
2026-01-25 19:30:29 +00:00
nixpkgs-ci[bot] and GitHub
519a339f89
amp-cli: 0.0.1768760544-gf06f5a -> 0.0.1769346334-gc7e300 ( #483644 )
2026-01-25 19:26:53 +00:00
7c6f434c and GitHub
eb1a53ae25
freeipmi: enable for darwin; nut: enable for darwin ( #483240 )
2026-01-25 19:13:38 +00:00
Michael Daniels
729d7d3ae0
workflows/periodic-merge: fix comment syntax
2026-01-25 14:02:39 -05:00
Luna and GitHub
a2592becc3
rocm-modules: use clr.localGpuTargets everywhere ( #482549 )
2026-01-25 18:52:25 +00:00
Masum Reza and GitHub
b9045fe034
google-chrome: remove JohnRTitor as co-maintainer ( #483702 )
2026-01-25 18:45:40 +00:00
Yohann Boniface and GitHub
64a080cfbf
kitty-themes: 0-unstable-2026-01-10 -> 0-unstable-2026-01-25 ( #464068 )
2026-01-25 18:19:25 +00:00
Toma and GitHub
b6e6b17e91
zmk-studio: fix build on darwin ( #483706 )
2026-01-25 18:15:14 +00:00
Austin Horstman and GitHub
e70874137f
vimPlugins.fff-nvim: e3f788f-unstable-2025-12-13 -> 6b01f95-unstable-2026-01-24 ( #483569 )
2026-01-25 18:15:11 +00:00
Sandro and GitHub
6077bc4fb2
pam_fde_boot_pw: init at 0.1 ( #481342 )
2026-01-25 18:08:28 +00:00
Aaron Andersen and GitHub
78e1c1b50a
kodiPackages.sponsorblock: 0.5.0 -> 0.6.0 ( #483158 )
2026-01-25 18:08:20 +00:00
Philip Taron and GitHub
d8a0e00fe6
llama-cpp: 7815 -> 7823 ( #483463 )
2026-01-25 18:08:17 +00:00
Yohann Boniface and GitHub
421c5819ef
libbaseencode: drop ( #480554 )
2026-01-25 18:01:37 +00:00
Yohann Boniface and GitHub
19c30d3413
cccc: mark for removal (gcc-15 build failure) ( #483637 )
2026-01-25 17:55:33 +00:00
R. Ryantm
615b488eb1
kitty-themes: 0-unstable-2026-01-10 -> 0-unstable-2026-01-25
2026-01-25 17:55:20 +00:00
Mohamed Hisham Abdelzaher
a2e2477038
cagent: init at 1.19.0
2026-01-25 19:54:25 +02:00
TomaSajt
228a994a1d
zmk-studio: fix build on darwin
2026-01-25 18:53:50 +01:00
Ihar Hrachyshka
e279d4affc
nut: enable for darwin
2026-01-25 12:47:52 -05:00
Ihar Hrachyshka
a5f8e948b1
freeipmi: enable for darwin
2026-01-25 12:47:50 -05:00
nixpkgs-ci[bot] and GitHub
df3a6e6d79
server-box: 1.0.1291 -> 1.0.1297 ( #483654 )
2026-01-25 17:45:50 +00:00
Michael Daniels and GitHub
fbd5bb1805
saunafs: remove unnecessary override ( #483686 )
2026-01-25 17:39:18 +00:00
Michael Daniels
c97df140fe
google-chrome: remove JohnRTitor as co-maintainer
...
Per request in https://github.com/NixOS/nixpkgs/pull/483541#issuecomment-3796760529 .
2026-01-25 12:33:12 -05:00
Yohann Boniface and GitHub
f36330bf81
imwheel: fixing build ( #483638 )
2026-01-25 17:21:19 +00:00
7c6f434c and GitHub
7590e06088
nilfs-utils: split man & dev outputs ( #483030 )
2026-01-25 17:17:55 +00:00
7c6f434c and GitHub
34a6a01366
debian-devscripts: 2.26.4 -> 2.26.5 ( #483413 )
2026-01-25 17:10:23 +00:00
nixpkgs-ci[bot] and GitHub
46f9cf8e9c
picom-pijulius: 8.2-unstable-2025-12-09 -> 8.2-unstable-2026-01-24 ( #483623 )
2026-01-25 17:04:17 +00:00
Aliaksandr and Michael Daniels
8aa4d13f10
sile: remove top-level override
2026-01-25 11:55:49 -05:00
Aliaksandr and Michael Daniels
fbdf49f097
shadps4: remove top-level override
2026-01-25 11:55:49 -05:00
Aliaksandr and Michael Daniels
0b71248027
ricochet-refresh: remove top-level override
2026-01-25 11:55:48 -05:00
Aliaksandr and Michael Daniels
e4fe197439
renpy: remove top-level override
2026-01-25 11:55:48 -05:00
Aliaksandr and Michael Daniels
58f82bd0e5
pekwm: remove top-level override
2026-01-25 11:55:48 -05:00