| Commit message (Expand) | Author | Age | Files | Lines |
| * | various: fix pname misuse in urls (#483962) | Gergő Gutyina | 2026-02-05 | 1 | -1/+1 |
| |\ |
|
| | * | various: fix pname misuse in urls | quantenzitrone | 2026-02-05 | 1 | -1/+1 |
| * | | circup: modernize | Fabian Affolter | 2026-02-05 | 1 | -5/+5 |
| * | | circup: 2.3.0 -> 3.0.1•••Diff: https://github.com/adafruit/circup/compare/2.3.0...3.0.1
Changelog: https://github.com/adafruit/circup/releases/tag/3.0.1
| Fabian Affolter | 2026-02-05 | 1 | -2/+2 |
| * | | cirrus-cli: 0.161.5 -> 0.162.0 | R. Ryantm | 2026-02-03 | 1 | -3/+3 |
| * | | circom: 2.2.2 -> 2.2.3 | R. Ryantm | 2026-02-01 | 1 | -3/+3 |
| * | | circleci-cli: 0.1.33721 -> 0.1.34038 (#465498) | Weijia Wang | 2026-01-31 | 1 | -2/+2 |
| |\ \ |
|
| | * | | circleci-cli: 0.1.33721 -> 0.1.34038 | R. Ryantm | 2025-12-16 | 1 | -2/+2 |
| * | | | cilium-cli: 0.18.8 -> 0.19.0 (#467389) | Weijia Wang | 2026-01-31 | 1 | -2/+2 |
| |\ \ \
| |_|/
|/| | |
|
| | * | | cilium-cli: 0.18.8 -> 0.19.0 | R. Ryantm | 2026-01-16 | 1 | -2/+2 |
| * | | | various: switch to finalAttrs pattern (#483882) | Fernando Rodrigues | 2026-01-30 | 10 | -30/+30 |
| |\ \ \ |
|
| | * | | | various: switch to finalAttrs pattern•••this shouldn't create any rebuilds
| quantenzitrone | 2026-01-30 | 10 | -30/+30 |
| * | | | | maintainers: drop shamilton (#482468) | Yohann Boniface | 2026-01-29 | 1 | -1/+0 |
| |\ \ \ \ |
|
| | * | | | | maintainers: drop shamilton•••Signed-off-by: Marcin Serwin <marcin@serwin.dev>
| Marcin Serwin | 2026-01-22 | 1 | -1/+0 |
| * | | | | | ciscoPacketTracer7: drop | Gutyina Gergő | 2026-01-28 | 1 | -159/+0 |
| * | | | | | ciscoPacketTracer9: init at 9.0.0 (#456650) | Gaétan Lepage | 2026-01-28 | 1 | -0/+90 |
| |\ \ \ \ \ |
|
| | * | | | | | ciscoPacketTracer9: init at 9.0.0 | Gutyina Gergő | 2026-01-21 | 1 | -0/+90 |
| * | | | | | | cirrus-cli: 0.160.0 -> 0.161.5 | R. Ryantm | 2026-01-27 | 1 | -3/+3 |
| * | | | | | | Cinnamon updates 2026-01-26 (#484016) | Bobby Rong | 2026-01-26 | 2 | -4/+4 |
| |\ \ \ \ \ \ |
|
| | * | | | | | | cinnamon: 6.6.5 -> 6.6.6•••https://github.com/linuxmint/cinnamon/compare/6.6.5...6.6.6
| Bobby Rong | 2026-01-26 | 1 | -2/+2 |
| | * | | | | | | cinnamon-settings-daemon: 6.6.2 -> 6.6.3•••https://github.com/linuxmint/cinnamon-settings-daemon/compare/6.6.2...6.6.3
| R. Ryantm | 2026-01-26 | 1 | -2/+2 |
| * | | | | | | | treewide: remove references to the xorg namespace in `pkgs/` (#482814) | Jo | 2026-01-26 | 6 | -50/+79 |
| |\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
| | * | | | | | | 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 | 6 | -45/+78 |
| | * | | | | | | 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`
| quantenzitrone | 2026-01-25 | 2 | -28/+24 |
| | | |_|/ / /
| |/| | | | |
|
| * | | | | | | cifs-utils: split bin, dev & man outputs (#482338) | Doron Behar | 2026-01-26 | 1 | -1/+8 |
| |\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| | * | | | | | cifs-utils: split bin, dev & man outputs | Doron Behar | 2026-01-22 | 1 | -1/+8 |
| * | | | | | | circt: 1.138.0 -> 1.139.0 (#479911) | Peder Bergebakken Sundt | 2026-01-24 | 2 | -2/+3 |
| |\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| | * | | | | | circt: 1.138.0 -> 1.139.0 | Shogo Takata | 2026-01-14 | 2 | -2/+3 |
| * | | | | | | cirrus-cli: 0.159.1 -> 0.160.0 | R. Ryantm | 2026-01-20 | 1 | -3/+3 |
| | |_|/ / /
|/| | | | |
|
| * | | | | | Cinnamon updates 2026-01-16 (#480730) | Bobby Rong | 2026-01-17 | 1 | -2/+2 |
| |\ \ \ \ \
| |_|_|/ /
|/| | | | |
|
| | * | | | | cinnamon: 6.6.4 -> 6.6.5•••https://github.com/linuxmint/cinnamon/compare/6.6.4...6.6.5
| Bobby Rong | 2026-01-16 | 1 | -2/+2 |
| | |/ / / |
|
| * / / / | cirrus-cli: 0.159.0 -> 0.159.1 | R. Ryantm | 2026-01-14 | 1 | -2/+2 |
| |/ / / |
|
| * / / | circumflex: 3.8 -> 3.9 | R. Ryantm | 2026-01-10 | 1 | -3/+3 |
| |/ / |
|
| * | | Cinnamon updates 2026-01-08 (#478106) | Bobby Rong | 2026-01-09 | 3 | -6/+6 |
| |\ \ |
|
| | * | | cinnamon-settings-daemon: 6.6.1 -> 6.6.2•••https://github.com/linuxmint/cinnamon-settings-daemon/compare/6.6.1...6.6.2
| Bobby Rong | 2026-01-08 | 1 | -2/+2 |
| | * | | cinnamon-desktop: 6.6.1 -> 6.6.2•••https://github.com/linuxmint/cinnamon-desktop/compare/6.6.1...6.6.2
| Bobby Rong | 2026-01-08 | 1 | -2/+2 |
| | * | | cinnamon: 6.6.3 -> 6.6.4•••https://github.com/linuxmint/cinnamon/compare/6.6.3...6.6.4
| Bobby Rong | 2026-01-08 | 1 | -2/+2 |
| * | | | cinnamon-translations: 6.6.1 -> 6.6.2 | R. Ryantm | 2026-01-09 | 1 | -2/+2 |
| * | | | citations: 0.8.0 -> 0.9.0 (#477755) | Aleksana | 2026-01-08 | 1 | -3/+3 |
| |\ \ \ |
|
| | * | | | citations: 0.8.0 -> 0.9.0 | linsui | 2026-01-07 | 1 | -3/+3 |
| | |/ / |
|
| * | | | cirrus-cli: 0.158.0 -> 0.159.0 | R. Ryantm | 2026-01-07 | 1 | -3/+3 |
| * | | | ciel: 3.9.10 -> 3.9.11 | R. Ryantm | 2026-01-03 | 1 | -3/+3 |
| |/ / |
|
| * | | cinny-unwrapped: use nodejs-22•••The (version of?) node-sass it uses doesn’t support nodejs-24, so let’s
lock it to nodejs 22
| Charlotte 🦝 Deleńkec | 2025-12-31 | 1 | -0/+3 |
| * | | cifs-utils: 7.4 -> 7.5 | R. Ryantm | 2025-12-31 | 1 | -2/+2 |
| * | | circt: 1.131.0 -> 1.138.0 (#463915) | Fernando Rodrigues | 2025-12-28 | 2 | -19/+56 |
| |\ \ |
|
| | * | | circt: 1.131.0 -> 1.138.0•••This commit does a few things.
- Updates circt to the latest version
- Updates the llvm and circt build options to match the official release
- Adds enable_slang_frontend feature flag that is enabled by default
- Updates the check targets
- Adds versionCheckHook
| Shogo Takata | 2025-12-28 | 2 | -19/+56 |
| * | | | cinnamon: 6.6.2 -> 6.6.3•••https://github.com/linuxmint/cinnamon/compare/6.6.2...6.6.3
| Bobby Rong | 2025-12-24 | 1 | -2/+2 |
| * | | | circle-flags: 2.7.0 -> 2.8.0 | R. Ryantm | 2025-12-18 | 1 | -2/+2 |
| * | | | Cinnamon updates 2025-12-16 (#471392) | Bobby Rong | 2025-12-17 | 3 | -6/+6 |
| |\ \ \ |
|
| | * | | | cinnamon-screensaver: 6.6.0 -> 6.6.1•••https://github.com/linuxmint/cinnamon-screensaver/compare/6.6.0...6.6.1
| Bobby Rong | 2025-12-17 | 1 | -2/+2 |