| Commit message (Expand) | Author | Age | Files | Lines |
| * | libSM: rename references and deprecate alias•••this shouldn't create any rebuilds
| quantenzitrone | 2026-02-04 | 2 | -4/+4 |
| * | libpthreadstubs: rename references and deprecate alias•••this shouldn't create any rebuilds
| quantenzitrone | 2026-02-04 | 7 | -14/+14 |
| * | xf86{videonouveau,input{evdev,libinput}}: rename references and deprecate ali...•••this shouldn't create any rebuilds
| quantenzitrone | 2026-02-04 | 1 | -3/+3 |
| * | pantheon.switchboard-plug-sharing: 8.0.2 -> 8.0.3 (#486591) | Bobby Rong | 2026-02-04 | 1 | -5/+5 |
| |\ |
|
| | * | pantheon.switchboard-plug-sharing: 8.0.2 -> 8.0.3•••https://github.com/elementary/switchboard-plug-sharing/compare/8.0.2...8.0.3
| Bobby Rong | 2026-02-03 | 1 | -5/+5 |
| * | | lomiri.lomiri-indicator-network: 1.1.2 -> 1.2.0 | R. Ryantm | 2026-02-02 | 1 | -6/+10 |
| * | | pantheon.wingpanel-quick-settings: 1.3.0 -> 1.4.0 | R. Ryantm | 2026-01-30 | 1 | -2/+2 |
| |/ |
|
| * | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-29 | 1 | -3/+3 |
| |\ |
|
| | * | pantheon.elementary-settings-daemon: 8.4.0 -> 8.5.0 (#484934) | Bobby Rong | 2026-01-29 | 1 | -3/+3 |
| | |\ |
|
| | | * | pantheon.elementary-settings-daemon: 8.4.0 -> 8.5.0•••https://github.com/elementary/settings-daemon/compare/8.4.0...8.5.0
| Bobby Rong | 2026-01-29 | 1 | -3/+3 |
| * | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-29 | 2 | -7/+18 |
| |\| | |
|
| | * | | pantheon.switchboard-with-plugs: enable strictDeps (#484270) | Bobby Rong | 2026-01-29 | 1 | -1/+3 |
| | |\ \ |
|
| | | * | | pantheon.switchboard-with-plugs: enable strictDeps | Colin | 2026-01-27 | 1 | -1/+3 |
| | | |/ |
|
| | * | | mate.marco: 1.28.1 -> 1.28.2 (#484039) | Bobby Rong | 2026-01-29 | 1 | -6/+15 |
| | |\ \ |
|
| | | * | | mate.marco: 1.28.1 -> 1.28.2•••https://github.com/mate-desktop/marco/compare/v1.28.1...v1.28.2
| Bobby Rong | 2026-01-26 | 1 | -6/+15 |
| * | | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-28 | 1 | -1/+1 |
| |\| | | |
|
| | * | | | treewide: expand pythonPath bash array for structuredAttrs for buildPythonPat... | Wolfgang Walther | 2026-01-28 | 1 | -1/+1 |
| | |\ \ \ |
|
| | | * | | | pluma: expand pythonPath bash array for structuredAttrs | Stefan Frijters | 2026-01-27 | 1 | -1/+1 |
| | | | |/
| | |/| |
|
| * | | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-28 | 1 | -0/+3 |
| |\| | | |
|
| | * | | | enlightenment.efl: fix build with gcc 15 | José Romildo | 2026-01-26 | 1 | -0/+3 |
| | |/ / |
|
| * | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-26 | 11 | -42/+62 |
| |\| | |
|
| | * | | treewide: remove references to the xorg namespace in `pkgs/` (#482814) | Jo | 2026-01-26 | 11 | -42/+62 |
| | |\ \ |
|
| | | * | | 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
```
| quantenzitrone | 2026-01-25 | 11 | -42/+62 |
| * | | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-26 | 1 | -16/+18 |
| |\| | | |
|
| | * | | | mate.pluma: 1.28.0 -> 1.28.1 (#483586) | Bobby Rong | 2026-01-25 | 1 | -16/+18 |
| | |\ \ \
| | |/ /
| |/| /
| | |/ |
|
| | | * | mate.pluma: 1.28.0 -> 1.28.1•••https://github.com/mate-desktop/pluma/compare/v1.28.0...v1.28.1
| Bobby Rong | 2026-01-25 | 1 | -16/+18 |
| * | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-25 | 3 | -11/+15 |
| |\| | |
|
| | * | | pantheon: Default to mutter 48 (#481657) | Bobby Rong | 2026-01-25 | 3 | -11/+15 |
| | |\ \ |
|
| | | * | | pantheon.elementary-greeter: Backport crash fixes for mutter 48 | Bobby Rong | 2026-01-24 | 1 | -4/+6 |
| | | * | | pantheon.gala: Backport crash fixes for mutter 48 | Bobby Rong | 2026-01-24 | 1 | -4/+6 |
| | | * | | pantheon.gnome-settings-daemon: 46.0 -> 48.1•••https://github.com/GNOME/gnome-settings-daemon/blob/48.1/NEWS
| Bobby Rong | 2026-01-24 | 1 | -2/+2 |
| | | * | | pantheon.mutter: 46.8 -> 48.7•••https://github.com/GNOME/mutter/blob/48.7/NEWS
| Bobby Rong | 2026-01-24 | 1 | -1/+1 |
| * | | | | Merge master into staging-nixos | nixpkgs-ci[bot] | 2026-01-25 | 1 | -15/+17 |
| |\| | | |
|
| | * | | | mate.eom: 1.28.0 -> 1.28.1 (#483257) | Bobby Rong | 2026-01-25 | 1 | -15/+17 |
| | |\ \ \
| | | |/
| | |/| |
|
| | | * | | mate.eom: 1.28.0 -> 1.28.1•••https://github.com/mate-desktop/eom/compare/v1.28.0...v1.28.1
| Bobby Rong | 2026-01-24 | 1 | -15/+17 |
| | | |/ |
|
| * | | | treewide: fix typos (#479869) | Michael Daniels | 2026-01-24 | 1 | -7/+7 |
| |\ \ \
| |/ /
|/| | |
|
| | * | | treewide: fix typos | Ben Siraphob | 2026-01-13 | 1 | -7/+7 |
| * | | | pantheon.xdg-desktop-portal-pantheon: 8.0.4 -> 8.1.0•••https://github.com/elementary/portals/compare/8.0.4...8.1.0
| Bobby Rong | 2026-01-24 | 1 | -3/+3 |
| | |/
|/| |
|
| * | | lomiri.lomiri-schemas: 0.1.9 -> 0.1.10 (#480912) | Cosima Neidahl | 2026-01-19 | 1 | -2/+2 |
| |\ \ |
|
| | * | | lomiri.lomiri-schemas: 0.1.9 -> 0.1.10 | R. Ryantm | 2026-01-17 | 1 | -2/+2 |
| * | | | lomiri.morph-browser: 1.99.1 -> 1.99.2 (#475310) | Cosima Neidahl | 2026-01-19 | 1 | -2/+2 |
| |\ \ \ |
|
| | * | | | lomiri.morph-browser: 1.99.1 -> 1.99.2 | OPNA2608 | 2025-12-30 | 1 | -2/+2 |
| * | | | | pantheon.wingpanel-applications-menu: 8.0.2 -> 8.0.3 (#480363) | Bobby Rong | 2026-01-17 | 1 | -3/+3 |
| |\ \ \ \
| |_|/ /
|/| | | |
|
| | * | | | pantheon.wingpanel-applications-menu: 8.0.2 -> 8.0.3•••https://github.com/elementary/applications-menu/compare/8.0.2...8.0.3
| Bobby Rong | 2026-01-15 | 1 | -3/+3 |
| * | | | | treewide: git tags: remove unnecessary string interpolation | Gaël James | 2026-01-15 | 1 | -1/+1 |
| * | | | | tree-wide: fetchgit, fetchFromGitHub, fetchFromGitLab, fetchFromGitea, fetchF... | Gaël James | 2026-01-15 | 1 | -1/+1 |
| * | | | | mate.libmateweather: 1.28.1 -> 1.28.2 (#479727) | Bobby Rong | 2026-01-14 | 1 | -2/+2 |
| |\ \ \ \ |
|
| | * | | | | mate.libmateweather: 1.28.1 -> 1.28.2•••https://github.com/mate-desktop/libmateweather/compare/v1.28.1...v1.28.2
| Bobby Rong | 2026-01-13 | 1 | -2/+2 |
| | |/ / / |
|
| * | | | | gnome2.libgnomecanvasmm: throw instead of returning a string (#479652) | Bobby Rong | 2026-01-13 | 1 | -1/+1 |
| |\ \ \ \ |
|
| | * | | | | gnome2.libgnomecanvasmm: throw instead of returning a string | quantenzitrone | 2026-01-13 | 1 | -1/+1 |
| | |/ / / |
|