 Gaétan LepageandGitHub
|
2d10e024f9
|
python3Packages.lm-eval: 0.4.9.2 -> 0.4.10 (#485805)
|
2026-02-07 09:32:10 +00:00 |
|
 Fernando RodriguesandGitHub
|
a242c54745
|
various: switch buildPythonApplication packages to use finalAttrs (#487735)
|
2026-02-07 09:30:09 +00:00 |
|
 Arnout EngelenandGitHub
|
ea7a4ab9c3
|
nftables: fix reproducibility (#485918)
|
2026-02-07 09:27:08 +00:00 |
|
 Fernando RodriguesandGitHub
|
169ab49f59
|
various: fix pname misuse and switch to finalAttrs pattern (#487638)
|
2026-02-07 09:20:32 +00:00 |
|
 Fernando RodriguesandGitHub
|
ac9dd68653
|
various: switch buildRustPackage packages to use finalAttrs (#487710)
|
2026-02-07 09:19:40 +00:00 |
|
 Sefa EyeogluandGitHub
|
5ed2c0b51e
|
vencord: 1.14.1 -> 1.14.2 (#487801)
|
2026-02-07 09:19:32 +00:00 |
|
 Fernando RodriguesandGitHub
|
2500aa35fb
|
various: refactor, mainly switch to finalAttrs pattern (#487760)
|
2026-02-07 09:16:28 +00:00 |
|
quantenzitrone
|
18dc8a95fb
|
various: switch buildPythonApplication packages to use finalAttrs
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set builder buildPythonApplication
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (finalAttrs: {" $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# combinations
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'inherit version pname;' 'inherit (finalAttrs) version pname;' $file
sd -F 'inherit pname version;' 'inherit (finalAttrs) pname version;' $file
sd -F 'inherit pname src version;' 'inherit (finalAttrs) pname src version;' $file
sd -F 'inherit pname version src;' 'inherit (finalAttrs) pname version src;' $file
sd -F 'inherit src pname version;' 'inherit (finalAttrs) src pname version;' $file
sd -F 'inherit src version pname;' 'inherit (finalAttrs) src version pname;' $file
sd -F 'inherit version pname src;' 'inherit (finalAttrs) version pname src;' $file
sd -F 'inherit version src pname;' 'inherit (finalAttrs) version src pname;' $file
# other
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'nativeBuildInputs}' 'finalAttrs.nativeBuildInputs}' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'propagatedBuildInputs}' 'finalAttrs.propagatedBuildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'makePythonPath dependencies' 'makePythonPath finalAttrs.dependencies' $file
sd -F 'makePythonPath propagatedBuildInputs' 'makePythonPath finalAttrs.propagatedBuildInputs' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'runtimeDeps}' 'finalAttrs.runtimeDeps}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
|
2026-02-07 10:06:06 +01:00 |
|
quantenzitrone
|
626f23ce26
|
various: switch packages to use finalAttrs
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set files (rg --files-with-matches -F 'stdenv.mkDerivation rec {' $scope | sort -u)
for file in $files
echo $file
sd -F 'stdenv.mkDerivation rec {' 'stdenv.mkDerivation (finalAttrs: {' $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
|
2026-02-07 09:59:05 +01:00 |
|
quantenzitrone
|
0f041b651e
|
various: fix pname misuse in meta.mainProgram
|
2026-02-07 09:57:16 +01:00 |
|
quantenzitrone
|
d3c84c2d12
|
various: fix pname misuse in fetcher arguments
|
2026-02-07 09:57:14 +01:00 |
|
quantenzitrone
|
d26a1a9e5e
|
various: switch buildRustPackage packages to use finalAttrs
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set builder buildRustPackage
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (finalAttrs: {" $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
|
2026-02-07 09:53:17 +01:00 |
|
 nixpkgs-ci[bot]andGitHub
|
89f88c3272
|
oha: 1.12.1 -> 1.13.0 (#487874)
|
2026-02-07 08:52:02 +00:00 |
|
quantenzitrone
|
1eda8362da
|
xenon: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:16 +01:00 |
|
quantenzitrone
|
071b541b99
|
wl-kbptr: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:15 +01:00 |
|
quantenzitrone
|
62a66b0735
|
wiseunpacker: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:15 +01:00 |
|
quantenzitrone
|
cedf0c4415
|
whisper-ctranslate2: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:14 +01:00 |
|
quantenzitrone
|
7d93cdb6b6
|
wgo: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:13 +01:00 |
|
quantenzitrone
|
ee9bd14833
|
wallabag: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:12 +01:00 |
|
quantenzitrone
|
1f8dabaece
|
wait4x: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:11 +01:00 |
|
quantenzitrone
|
39898a77ee
|
vim-startuptime: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:11 +01:00 |
|
quantenzitrone
|
f2537eac62
|
ts_query_ls: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:10 +01:00 |
|
quantenzitrone
|
6cbb84b95d
|
tparse: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:09 +01:00 |
|
quantenzitrone
|
4bd43e3bc1
|
totp-cli: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:08 +01:00 |
|
quantenzitrone
|
82acdb73e4
|
talkfilters: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:08 +01:00 |
|
quantenzitrone
|
209dec484b
|
surrealdb-migrations: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:07 +01:00 |
|
quantenzitrone
|
558c43c090
|
stylance-cli: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:06 +01:00 |
|
quantenzitrone
|
07b05470e5
|
spotlight-downloader: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:06 +01:00 |
|
quantenzitrone
|
6691ff8670
|
serpl: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:05 +01:00 |
|
quantenzitrone
|
dd987f1135
|
saucectl: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:04 +01:00 |
|
quantenzitrone
|
e6855255f0
|
rustus: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:04 +01:00 |
|
quantenzitrone
|
8d6384277c
|
rustlings: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:03 +01:00 |
|
quantenzitrone
|
ede86ae242
|
regrippy: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:02 +01:00 |
|
quantenzitrone
|
d482c6625d
|
redfishtool: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:02 +01:00 |
|
quantenzitrone
|
f9b378abe9
|
quivira: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:01 +01:00 |
|
quantenzitrone
|
e45b73d81d
|
qsv: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:49:00 +01:00 |
|
quantenzitrone
|
c13cca947d
|
poptop: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:59 +01:00 |
|
quantenzitrone
|
d8583a10c8
|
plakativ: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:59 +01:00 |
|
quantenzitrone
|
b0d1250dae
|
pdfannots2json: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:58 +01:00 |
|
quantenzitrone
|
b61faa6ca1
|
opengfw: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:57 +01:00 |
|
quantenzitrone
|
cef14db783
|
openfga: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:57 +01:00 |
|
quantenzitrone
|
8846082658
|
openfga-cli: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:56 +01:00 |
|
quantenzitrone
|
e36bda8947
|
ockam: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:55 +01:00 |
|
quantenzitrone
|
007002545f
|
nix-bisect: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:55 +01:00 |
|
quantenzitrone
|
d6179efb7c
|
netscanner: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:54 +01:00 |
|
quantenzitrone
|
85af75cd70
|
mov-cli: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:53 +01:00 |
|
quantenzitrone
|
28961506a3
|
modprobed-db: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:52 +01:00 |
|
quantenzitrone
|
535affd956
|
minidlna: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:52 +01:00 |
|
quantenzitrone
|
b2bb4af46a
|
mdsf: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:51 +01:00 |
|
quantenzitrone
|
5a78dffdfa
|
mdbook-yml-header: refactor
this shouldn't create any rebuilds
|
2026-02-07 09:48:50 +01:00 |
|