Commit Graph
942615 Commits
Author SHA1 Message Date
quantenzitrone bf32fced2a leiningen: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:47 +01:00
quantenzitrone 03934d74be lefthook: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:47 +01:00
quantenzitrone cad03d928e kratos: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:46 +01:00
quantenzitrone ca2f11ef2f jwtinfo: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:45 +01:00
quantenzitrone 6f15eed503 grip-grab: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:44 +01:00
quantenzitrone 3c3b7c55fc gptcommit: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:44 +01:00
quantenzitrone 0f50181641 gluesql: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:43 +01:00
quantenzitrone 6bf0e21145 gitui: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:42 +01:00
quantenzitrone c8d7c8b99b gitopper: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:42 +01:00
quantenzitrone 1cf973f1c3 git-upstream: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:41 +01:00
quantenzitrone 4562924698 gate: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:40 +01:00
quantenzitrone aee00ac804 gallery-dl: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:39 +01:00
quantenzitrone f55f0a55c0 erigon: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:39 +01:00
quantenzitrone 0431b23169 elvish: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:38 +01:00
quantenzitrone cc05943cb1 ecdsautils: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:36 +01:00
quantenzitrone fff95cd395 e1s: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:35 +01:00
quantenzitrone 3cbf58b71b dump_syms: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:34 +01:00
quantenzitrone e0db916f05 documenso: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:34 +01:00
quantenzitrone 4d29d3a183 cavasik: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:33 +01:00
quantenzitrone 0cebd281a7 cargo-mobile2: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:32 +01:00
quantenzitrone 24898c6c4f cabal-cli: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:32 +01:00
quantenzitrone 78681392fd buildpack: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:31 +01:00
quantenzitrone 20f127a8c8 bpftop: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:30 +01:00
quantenzitrone 3ca7405647 bms-to-osu: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:30 +01:00
quantenzitrone d0c7fa7880 bigquery-emulator: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:29 +01:00
quantenzitrone 4ec5ba2a90 base16-shell-preview: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:28 +01:00
quantenzitrone 49220e1fc8 avro-tools: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:27 +01:00
quantenzitrone 24d480f58f atomic-swap: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:27 +01:00
quantenzitrone cd7c5661f9 asm-lsp: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:26 +01:00
quantenzitrone 0ffa8c7803 aldo: refactor
this shouldn't create any rebuilds
2026-02-07 09:48:15 +01:00
quantenzitrone 9380e05c3c various: switch buildGoModule 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 buildGoModule

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:28:59 +01:00
nixpkgs-ci[bot]andGitHub 78679f24a2 emmylua-check: 0.19.0 -> 0.20.0 (#487863) 2026-02-07 08:01:08 +00:00
R. Ryantm 4b3192c937 peazip: 10.8.0 -> 10.9.0 2026-02-07 07:49:43 +00:00
Matthias BeyerandGitHub 3e625ad274 nurl: 0.3.13 -> 0.4.0; nix-init: 0.3.2 -> 0.3.3 (#487687) 2026-02-07 07:49:07 +00:00
R. Ryantm 6c10ac81cc oha: 1.12.1 -> 1.13.0 2026-02-07 07:47:43 +00:00
R. Ryantm 0768688b80 models-dev: 0-unstable-2026-01-30 -> 0-unstable-2026-02-07 2026-02-07 07:46:04 +00:00
K900andGitHub b13bf32d8a mesa: 25.3.4 -> 25.3.5 (#487870) 2026-02-07 07:28:05 +00:00
·𐑑𐑴𐑕𐑑𐑩𐑤 da7be379ab nixtamal: 0.2.1-beta → 0.3.1-beta 2026-02-07 14:25:09 +07:00
K900 34714e8ec4 mesa: 25.3.4 -> 25.3.5
Diff: https://gitlab.freedesktop.org/mesa/mesa/-/compare/mesa-25.3.4...mesa-25.3.5

Changelog: https://docs.mesa3d.org/relnotes/25.3.5.html
2026-02-07 10:21:49 +03:00
Austin HorstmanandGitHub 1c9f2cc6da _1password-cli: 2.32.0 -> 2.33.0-beta.01 (#487864) 2026-02-07 07:10:28 +00:00
R. Ryantm 33511cde3e sing-box: 1.12.17 -> 1.12.20 2026-02-07 07:05:47 +00:00
R. Ryantm 44d90fad32 _1password-cli: 2.32.0 -> 2.33.0-beta.01 2026-02-07 06:44:48 +00:00
Saad Nadeem 0e23c1af22 nixos/elephant: init service 2026-02-07 01:32:29 -05:00
Saad Nadeem a23eb2568b elephant: init at 2.19.2
Co-authored-by: Adam C. Stephens
<adamcstephens@users.noreply.github.com>
2026-02-07 01:31:49 -05:00
R. Ryantm ff95565f9f emmylua-check: 0.19.0 -> 0.20.0 2026-02-07 06:30:49 +00:00
dishandGitHub e6cef6bb26 coc-markdownlint: 0-unstable-2026-01-01 -> 0-unstable-2026-02-01 (#487855) 2026-02-07 06:19:41 +00:00
dishandGitHub 59915114d1 coc-rust-analyzer: 0-unstable-2026-01-20 -> 0-unstable-2026-02-01 (#487853) 2026-02-07 06:16:50 +00:00
dishandGitHub 834d711e67 gatsby-cli: 5.15.0 -> 5.16.0 (#487851) 2026-02-07 06:16:27 +00:00
Yiyu Zhou 5670313dd3 bcachefs-tools: 1.36.0 -> 1.36.1 2026-02-07 00:16:00 -06:00
dishandGitHub 4d616cf1df coc-texlab: 0-unstable-2025-07-22 -> 0-unstable-2026-01-28 (#487850) 2026-02-07 06:15:28 +00:00