Commit Graph

90 Commits

Author SHA1 Message Date
R. Ryantm
24405d04d2 iwe: 0.1.3 -> 0.19.1 2026-08-16 04:48:47 +00:00
Ben Siraphob
5506449838 pkgs/by-name: fix typos
Assisted-by: Claude Code (claude-opus-5)
2026-08-05 09:56:33 -07:00
nick-linux8
aa39517cf7 iw: add nick-linux to maintainers 2026-06-09 19:42:52 -04:00
R. Ryantm
75492d0694 iwe: 0.0.70 -> 0.1.3 2026-05-10 20:22:15 +00:00
hulr
35c8d2dc9c iwe: 0.0.67 -> 0.0.70 2026-04-28 20:02:38 +02:00
hulr
a2d3b3dd86 iwe: 0.0.64 -> 0.0.67 2026-04-08 21:27:52 +02:00
azban
8009625c27 iwe: 0.0.60 -> 0.0.64 2026-03-26 11:42:37 -06:00
R. Ryantm
34c521aa29 iwd: 3.11 -> 3.12 2026-03-14 15:50:30 +00:00
R. Ryantm
a8ebe52fb9 iwmenu: 0.3.0 -> 0.4.0 2026-03-01 01:53:27 +00:00
R. Ryantm
d850ff56f0 iwd: 3.10 -> 3.11 2026-02-11 09:24:42 +00: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
quantenzitrone
6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
nixpkgs-ci[bot]
33adae5a01 Merge master into staging-next 2026-01-19 18:06:39 +00:00
R. Ryantm
2b092d69a1 iwe: 0.0.59 -> 0.0.60 2026-01-19 14:40:33 +00:00
nixpkgs-ci[bot]
c3d339e54c Merge master into staging-next 2026-01-14 00:19:10 +00:00
R. Ryantm
93f0e17814 iwe: 0.0.57 -> 0.0.59 2026-01-13 16:27:28 +00:00
Michael Daniels
9d93b7bb76 Merge remote-tracking branch 'upstream/staging-next' into staging 2026-01-01 13:08:42 -05:00
Michael Daniels
9a04427f2c maintainers: remove dtzWill
Totally inactive on GitHub since August 2024.
2026-01-01 12:33:41 -05:00
Michael Daniels
1d769dac9a readline: 8.3p1 -> 8.3p3 (#471262) 2025-12-31 20:28:18 +00:00
Sergei Trofimovich
4b76bc68dd iwd: revert "get rid of readline segfault"
`readline-8.1p3` patch set contains the fix. Remove
the override to avoid patch application failures.

This reverts commit a9238a1e6f.
2025-12-17 21:59:43 +00:00
K900
07ec151dd8 Merge remote-tracking branch 'origin/staging-next' into staging 2025-12-14 21:54:15 +03:00
R. Ryantm
1a9ba440b5 iwe: 0.0.56 -> 0.0.57 2025-12-12 23:46:55 +00:00
Wolfgang Walther
46c0c0eae7 Merge branch 'staging-next' into staging 2025-12-10 18:42:31 +01:00
Ihar Hrachyshka
567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
nixpkgs-ci[bot]
107e278452 Merge staging-next into staging 2025-11-29 12:07:27 +00:00
Jonathan Davies
116036d574 treewide: Remove redundant versionCheckProgramArg = "--version"; with:
```shell
git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do
  sed -i '/versionCheckProgramArg/d' "$f"
  sed -i '/^$/N;/\n$/D' "$f"
done
```
2025-11-20 10:39:02 +00:00
hulr
eae2b013b2 iwe: 0.0.33 -> 0.0.56 2025-11-14 22:14:17 +01:00
Michael Daniels
eb833639c8 treewide: drop figsoda as maintainer (part 1)
s/maintainers = with lib.maintainers; [ figsoda ];/maintainers = with lib.maintainers; [ ];/
2025-11-02 20:16:11 -05:00
Wolfgang Walther
c283f32d29 treewide: remove unused with
Auto-fixed by nixf-diagnose.
2025-10-05 10:50:41 +02:00
R. Ryantm
e38bf2eb1e iw4x-launcher: 1.1.2 -> 1.1.6 2025-10-02 06:04:09 +00:00
Sergei Trofimovich
23d079cb00 iwd: 3.9 -> 3.10
Changes: https://git.kernel.org/pub/scm/network/wireless/iwd.git/tree/ChangeLog?h=3.10
2025-09-26 06:26:02 +01:00
R. Ryantm
a21e620a2b iwmenu: 0.2.0 -> 0.3.0 2025-09-22 20:31:17 +00:00
h7x4
e730acd83b iw4x-launcher: update homepage (#444617) 2025-09-22 01:17:36 +00:00
R. Ryantm
8ec25515f9 iw4x-launcher: 1.0.2-2 -> 1.1.2 2025-09-21 04:46:21 +00:00
andrew-field
b24012d616 iw4x-launcher: update homepage 2025-09-20 23:04:16 +03:00
Fabián Heredia Montiel
ecb4f79d82 iw: 6.9 -> 6.17 (#439849) 2025-09-10 23:16:33 -06:00
R. Ryantm
5c337b79ac iw4x-launcher: 1.0.2-1 -> 1.0.2-2 2025-09-10 05:11:53 +00:00
R. Ryantm
f4a0f2bb03 iw: 6.9 -> 6.17 2025-09-03 12:30:44 +00:00
R. Ryantm
c4ecc1a793 iw4x-launcher: 1.0.2 -> 1.0.2-1 2025-08-29 19:50:07 +00:00
Tom van Dijk
a9238a1e6f iwd: get rid of readline segfault
Co-authored-by: Franz Pletz <fpletz@fnordicwalking.de>
2025-07-30 15:38:31 +02:00
TomaSajt
398b16e16c treewide: remove useFetchCargoVendor usages 2025-07-26 11:39:35 +02:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
R. Ryantm
a119ffa449 iw4x-launcher: 1.0.1 -> 1.0.2 2025-07-07 13:17:54 +00:00
Franz Pletz
875ba23d30 iwd: 3.8 -> 3.9 and fix error msg in the system log (#418124) 2025-06-30 15:14:01 +02:00
R. Ryantm
626b915040 iw4x-launcher: 0.10.10 -> 1.0.1 2025-06-27 19:56:43 +00:00
Aleksana
b4bdd81b87 iw4x-launcher: init at 0.10.10 (#419845) 2025-06-27 16:42:07 +08:00
Andrew Field
89e05d6c71 iw4x-launcher: init at 0.10.10 2025-06-27 11:23:21 +03:00
r-vdp
b6596b40bb iwd: src.rev -> src.tag 2025-06-19 17:14:21 +02:00
r-vdp
88565ccffd iwd: avoid error in the logs about a non-existing netdev group 2025-06-19 12:12:52 +02:00
r-vdp
07477ca0e6 iwd: 3.8 -> 3.9 2025-06-19 12:12:52 +02:00